:root {
  --theme-color: #0c2529;
  --green-color: #007549;
  --light-green-color: #a1c138;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-orbitron: "Orbitron", sans-serif;
  --font-roboto: "Roboto", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-roboto);
  color: #0c2529;
  overflow-x: hidden;
  background: #fff;
}
a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: var(--light-green-color);
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #0c2529;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
}
.topbar {
  background: rgb(12 37 41);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 0;
}
.topbar .container {
  padding: 0 30px;
}
.topbar .free-shipping {
  color: #fff;
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar .free-shipping i {
  color: var(--light-green-color);
  font-size: 14px;
}
.topbar .social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
.topbar .social-icons a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: 0.3s;
  font-family: var(--font-orbitron);
  font-weight: 300;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar .social-icons a i {
  background: rgb(0 117 73);
  padding: 5px 7px;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  transition: 0.3s;
}
.topbar .social-icons a:hover {
  color: #fff;
}
.topbar .social-icons a:hover i {
  background: var(--green-color);
}
.topbar .social-icons .login-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.topbar .social-icons .login-link:hover {
    color: var(--light-green-color);
}
.main_header {
  padding: 17px 0;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.logo img {
  width: 110px;
}
.header-right {
  flex: 1;
  max-width: 794px;
  margin: 0 18px;
  border: 1px solid #ffffff30;
  background-color: #162e31;
  border-radius: 41px;
  padding: 4px;
}
.stellarnav {
  width: 100%;
}
.stellarnav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stellarnav > ul > li {
  display: inline-block;
  position: relative;
}
.stellarnav > ul > li > a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 18px;
  display: block;
  letter-spacing: 0.5px;
  transition: 0.3s;
}
.stellarnav > ul > li > a:hover,
.stellarnav > ul > li > a.active {
  color: var(--light-green-color);
}
.stellarnav ul ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #0c2529;
  padding: 10px 0;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  pointer-events: none;
}
.stellarnav > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}
.stellarnav ul ul li {
  display: block;
  position: relative;
}
.stellarnav ul ul li a {
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 24px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-roboto);
  transition: 0.3s;
  white-space: nowrap;
}
.stellarnav ul ul li a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--light-green-color);
  padding-left: 28px;
}
.header-button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: 0.3s;
  white-space: nowrap;
}
.header-button:hover {
  background: var(--green-color);
  border-color: var(--green-color);
  transform: scale(1.03);
}
.header-button a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-orbitron);
}
.header-button a i {
  font-size: 18px;
  margin-left: 4px;
}
.header-button .cart-amount {
  color: var(--light-green-color);
}
.menu-toggle {
  display: none;
  background: var(--green-color);
  padding: 6px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.menu-toggle:hover {
  background: var(--light-green-color);
  color: #000;
}
.main-heading {
  color: #ffffff;
  text-align: center;
  font-size: 50px;
  margin-bottom: 80px;
  font-family: "Orbitron";
  font-weight: 600;
}
.banner {
  position: relative;
  background-color: var(--theme-color);
  padding: 220px 0 90px;
  overflow: hidden;
}
.main-banner {
  position: relative;
}
.main-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/images/banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.main-banner .container {
  position: relative;
  z-index: 1;
}
.banner h1 {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  font-family: var(--font-orbitron);
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 2px;
}
.banner-img img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}
.banner-content p {
  font-family: var(--font-roboto);
  font-size: 27px;
  line-height: 42px;
  color: #d0d0d0;
  font-weight: 400;
}
.main-card-sec {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--theme-color);
  padding: 80px 0;
}
.main-card-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/images/main-card-sec.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}
.main-card-sec .container {
  position: relative;
  z-index: 1;
}
.card-sec {
  position: relative;
  margin-bottom: 30px;
  transition: 0.3s;
}
.card-sec:hover {
  transform: translateY(-6px);
}
.card-sec img {
  border-radius: 30px;
  width: 100%;
  object-fit: cover;
  height: 300px;
}
.card-sec a {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border-radius: 25px;
  font-size: 17px;
  white-space: nowrap;
  text-decoration: none;
  width: 82%;
  max-width: 230px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-orbitron);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}
.card-sec a:hover {
  background: var(--green-color);
  color: #fff;
}
.card-sec a:hover {
  background-color: var(--green-color) !important;
}
.card-sec a::after {
  content: "";
  margin-left: 8px;
  font-size: 16px;
  font-weight: 700;
}
.our-shop {
  background: var(--theme-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.our-shop .container {
  max-width: 1450px;
}
.product-slider-wrapper {
  margin-top: 50px;
}
.sub-heading {
  color: #fff;
  font-family: var(--font-orbitron);
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
.shop-card-slider {
  margin: 0 -8px;
}
.shop-card-item {
  padding: 0 8px;
}
.shop-sec {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px 15px 35px;
  text-align: center;
  height: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  width: 350px;
}
.shop-sec:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}
.shop-sec .img-box {
    height: 257px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    width: 100%;
}
.img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.shop-sec h2 {
  margin: 12px 0 10px;
}
.shop-sec h2 a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-orbitron);
  letter-spacing: 0.5px;
}
.price-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 24px;
  border-radius: 30px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.price-box .price-old {
  color: rgba(255, 255, 255, 0.4);
  font-size: 17px;
  font-weight: 400;
  text-decoration: line-through;
  font-family: var(--font-orbitron);
  display: none;
}
.price-box .price-new {
  color: var(--light-green-color);
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-orbitron);
}
.cart-btn {
  background: #00897b;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
.cart-btn:hover {
  background: var(--light-green-color);
  color: #000;
  transform: scale(1.1);
}
.slick-prev,
.slick-next {
  width: 36px;
  height: 36px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: 0.3s;
}
.slick-prev:hover,
.slick-next:hover {
  background: var(--green-color);
}
.slick-prev {
  left: -41px;
}
.slick-next {
  right: -41px;
}
.slick-prev:before,
.slick-next:before {
  font-family: "bootstrap-icons";
  font-size: 22px;
  color: #fff;
  opacity: 0.9;
}
.slick-prev:before {
  content: "\F284";
}
.slick-next:before {
  content: "\F285";
}
.slick-dots {
  bottom: -35px;
}
.slick-dots li button:before {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}
.slick-dots li.slick-active button:before {
  color: var(--light-green-color);
}
.main-contact-us {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--theme-color);
}
.main-contact-us::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/contact-us-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.4;
}
.contact-content,
.contact-form {
  position: relative;
  z-index: 2;
}
.contact-content .sub-heading {
  font-size: 45px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 51px;
  font-family: var(--font-orbitron);
}
.contact-content .sf_01 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 10px 0 20px;
  font-family: var(--font-orbitron);
}
.contact-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
}
.contact-content .icon-wrapper {
  background: var(--green-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}
.contact-content ul {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
}
.contact-content ul li .text-white {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-content ul li a {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}
.contact-content ul li a:hover {
  color: var(--light-green-color);
}
.contact-form .form-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-orbitron);
  letter-spacing: 0.5px;
}
.contact-form .form-control {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 15px;
  transition: 0.3s;
}
.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--light-green-color);
  box-shadow: 0 0 0 3px rgba(161, 193, 56, 0.15);
}
.contact-form .btn-01 {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 50px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  font-family: var(--font-orbitron);
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
}
.contact-form .btn-01:hover {
  background: var(--green-color);
  border-color: var(--green-color);
  transform: scale(1.03);
  color: #fff;
}
.contact-form .contact-btn {
  margin-top: 5px;
}
.footerSec {
  background: #000000ec;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}
.footerSec::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/images/footer-sec-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.footerSec .container {
  position: relative;
  z-index: 1;
}
.footer-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 30px;
  padding: 30px 20px 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.footer-logo img {
  width: 160px;
}
.footer-links h5 {
  color: #fff;
  font-family: var(--font-orbitron);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  margin-left: 31px;
}
.footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
  display: block;
  padding: 4px 0;
  transition: 0.3s;
}
.footer-links ul li a:hover {
  color: var(--light-green-color);
  padding-left: 6px;
}
.footer-links ul p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}
.footer-links ul p a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-links ul p a i {
  color: var(--light-green-color);
  margin-right: 8px;
}
.footer-links ul p a:hover {
  color: var(--light-green-color);
}
.copyright-line {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
}
.copyright-line p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  font-weight: 300;
  margin: 0;
}
.linkList {
  margin: 0 35px;
}
@media (max-width: 1199px) {
  .stellarnav > ul > li > a {
    padding: 8px 12px;
    font-size: 12px;
  }
  .header-right {
    margin: 0 10px;
  }
  .banner h1 {
    font-size: 42px;
  }
  .banner-content p {
    font-size: 20px;
    line-height: 34px;
  }
  .card-sec a {
    font-size: 15px;
    height: 40px;
    width: 80%;
  }
  .sub-heading {
    font-size: 28px;
  }
  .shop-sec {
    min-height: 400px;
    padding: 20px 12px 28px;
  }
}
@media (max-width: 991px) {
  .header-right {
    margin: 0 6px;
    flex: 1;
  }
  .stellarnav > ul > li > a {
    padding: 6px 10px;
    font-size: 11px;
  }
  .logo img {
    width: 80px;
  }
  .header-button {
    padding: 4px 12px;
  }
  .header-button a {
    font-size: 14px;
  }
  .banner {
    padding: 160px 0 60px;
  }
  .banner h1 {
    font-size: 34px;
    margin-bottom: 25px;
  }
  .banner-content p {
    font-size: 18px;
    line-height: 30px;
  }
  .main-heading {
    font-size: 36px;
  }
  .card-sec img {
    height: 180px;
  }
  .contact-content .sf_01 {
    font-size: 32px;
  }
  .footer-links {
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .topbar .container {
    padding: 0 15px;
  }
  .topbar .free-shipping {
    font-size: 10px;
    justify-content: center;
    text-align: center;
  }
  .topbar .social-icons {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
  }
  .topbar .social-icons a {
    font-size: 11px;
  }
  .topbar .social-icons .login-link {
    border-left: none;
    padding-left: 0;
  }
  .menu-toggle {
    display: block !important;
  }
  .header-wrap {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .header-right {
    order: 3;
    flex: 0 0 100%;
    margin: 8px 0 0;
    border-radius: 12px;
    padding: 0;
    background: transparent;
    border: none;
  }
  .stellarnav {
    display: none;
  }
  .stellarnav.mobile.active {
    display: block;
    background: #0c2529;
    border-radius: 12px;
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stellarnav.mobile > ul {
    display: block;
    text-align: left;
    background: #0c2529;
    border: none;
  }
  .stellarnav.mobile > ul > li {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
  }
  .stellarnav.mobile > ul > li > a {
    padding: 10px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
  }
  .stellarnav.mobile ul ul {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    transform: none;
    box-shadow: none;
  }
  .stellarnav.mobile ul ul li a {
    padding: 8px 20px 8px 40px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
  }
  .stellarnav.mobile ul ul li a:hover {
    padding-left: 44px;
  }
  .stellarnav.mobile .dd-toggle {
    display: block !important;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  .stellarnav.mobile .dd-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .header-button {
    margin-left: auto;
    padding: 4px 12px;
  }
  .header-button a {
    font-size: 13px;
  }
  .banner {
    padding: 120px 0 50px;
  }
  .banner h1 {
    font-size: 26px;
    margin-bottom: 18px;
  }
  .banner-content p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 12px;
  }
  .main-card-sec {
    padding: 50px 0;
  }
  .main-heading {
    font-size: 28px;
  }
  .card-sec a {
    font-size: 14px;
    height: 38px;
    width: 70%;
    max-width: 180px;
  }
  .card-sec img {
    height: 160px;
  }
  .our-shop {
    padding: 50px 0;
  }
  .sub-heading {
    font-size: 22px;
  }
  .shop-sec {
    min-height: 350px;
    padding: 15px 10px 22px;
  }
  .shop-sec h2 a {
    font-size: 13px;
  }
  .price-box .price-new {
    font-size: 20px;
  }
  .price-box .price-old {
    font-size: 14px;
  }
  .slick-prev {
    left: -6px;
    width: 28px;
    height: 28px;
  }
  .slick-next {
    right: -6px;
    width: 28px;
    height: 28px;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 18px;
  }
  .main-contact-us {
    padding: 50px 0;
  }
  .contact-content .sf_01 {
    font-size: 28px;
  }
  .contact-content p {
    font-size: 16px;
  }
  .contact-form .btn-01 {
    padding: 12px 30px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }
  .contact-form .contact-btn {
    margin-left: 0;
  }
  .footerSec {
    padding: 40px 0 15px;
  }
  .footer-box {
    padding: 20px 15px 10px;
  }
  .footer-logo img {
    width: 120px;
  }
  .footer-links {
    margin: 0 0 20px;
  }
  .footer-links h5 {
    font-size: 15px;
  }
  .copyright-line p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .banner h1 {
    font-size: 22px;
  }
  .banner-content p {
    font-size: 14px;
    line-height: 22px;
  }
  .main-heading {
    font-size: 22px;
  }
  .card-sec a {
    font-size: 12px;
    height: 32px;
    width: 65%;
    max-width: 140px;
  }
  .sub-heading {
    font-size: 18px;
  }
  .shop-sec {
    min-height: 310px;
  }
  .shop-sec h2 a {
    font-size: 12px;
  }
  .price-box {
    padding: 6px 14px;
    gap: 6px;
  }
  .price-box .price-new {
    font-size: 17px;
  }
  .price-box .price-old {
    font-size: 12px;
  }
  .cart-btn {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .contact-content .sf_01 {
    font-size: 24px;
  }
  .contact-form .btn-01 {
    font-size: 13px;
    padding: 10px 16px;
  }
  .topbar .free-shipping {
    font-size: 9px;
  }
  .topbar .social-icons a {
    font-size: 10px;
  }
}
.text-white {
  color: #fff !important;
}
.bg-theme {
  background: var(--theme-color);
  padding: 50px 0;
}
.sec-pd {
  padding: 80px 0;
}
.fs-19 {
  font-size: 19px;
}
.fs-40 {
  font-size: 40px;
}
.fs-55 {
  font-size: 55px;
}
.orbitron {
  font-family: var(--font-orbitron);
}
.gray {
  color: #bfbfba;
}
.fs-400 {
  font-weight: 400;
}
.inner-banner {
  background-color: var(--theme-color);
  padding: 225px 0 50px;
  text-align: center;
  border-bottom: 1px solid #ffffff30;
}
.inner-banner h1 {
  font-size: 50px;
  font-family: var(--font-orbitron);
  font-weight: 500;
  text-transform: uppercase;
}
.who-we-are {
  position: relative;
  overflow: hidden;
}
.who-we-are::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/inner-bg-img.jpg") center / cover no-repeat;
  z-index: 0;
  background-image: linear-gradient(180deg, #0c2529 0%, #10362f 100%);
  --background-overlay: "";
  background-color: transparent;
}
.who-we-are > * {
  position: relative;
  z-index: 1;
}
.who-we-are-img {
  margin: 100px 0;
}
.who-we-are-img img {
  height: 700px;
  width: 1000px;
  overflow: hidden;
  object-fit: cover;
}
.who-we-are-content p {
  color: var(--white-color);
}
.who-we-are-content h1 {
  font-size: 35px !important;
  font-weight: 500 !important;
}
.shop-inner-head .sub-heading {
  font-weight: 500;
}
.shop-inner-page h1 {
  margin: 42px 0 0 0;
  font-size: 45px;
}
.shop-inner-page h2 {
  padding: 45px 0 0;
}
.shop-inner-page {
  margin: 0 0 30px 0;
}
.main-contact h1 {
  font-size: 55px;
  font-weight: 500;
}
.contact-inner {
  position: relative;
  overflow: hidden;
}
.contact-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.contact-1 {
  position: absolute;
  top: 69px;
  left: 44rem;
  z-index: 2;
  border-radius: 60px;
}
.contact-2 {
  position: absolute;
  top: 69px;
  left: 40rem;
  z-index: 1;
  border-radius: 60px;
}
.contact-icon {
  position: absolute;
  top: 80px;
  left: 48rem;
  z-index: 3;
}
.contact-icon i {
  background-color: var(--green-color);
  color: var(--white-color);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
}
.contact-form-inner .contact-form {
  position: relative;
  z-index: 2;
  background-color: #ffffff12;
  padding: 55px 135px 55px 45px;
  border-radius: 33px;
}
.contact-form-inner {
  padding: 50px 0;
}
.contact-sec-form {
  background-color: var(--black-color);
  padding: 25px;
  width: 375px;
  height: 500px;
  border-radius: 29px;
  position: relative;
  overflow: hidden;
}
.contact-sec-form::before {
  content: "";
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
}
.contact-sec-form span {
  font-size: 21px;
  font-weight: 400;
}
.contact-sec-form .sf_03 {
  padding: 8px 30px 10px 20px;
  background-color: #ffffff1a;
  border-radius: 52px;
  margin-top: 31px;
  border: 1px solid #ffffff36;
}
.contact-sec-form .icon-wrapper {
  background-color: #000;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
.contact-sec-form hr {
  color: #ffffff;
  margin: 40px 0;
}
.product-care {
  background-color: var(--black-color);
}
.product-care h2 {
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
  max-width: 62%;
  font-size: 45px;
}
.content-wrapper {
  width: 100%;
  max-width: 1000px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}
.pill-container {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  margin-left: 174px;
}
.pill-button {
  background: linear-gradient(90deg, #4d8a4b, #2c4b2e);
  border: 1px solid #6db56b;
  padding: 8px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  font-family: var(--font-orbitron);
}
.line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-left: -20px;
  z-index: 1;
}
.arrow-icon {
  font-size: 35px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 27px;
}
.arrow-icon:hover {
  transform: translateX(5px);
}
.main-content {
  display: flex;
  gap: 96px;
  align-items: flex-start;
}
.left-number {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.left-number i {
  font-size: 1.2rem;
  margin-top: 5px;
  color: #ffffff;
}
.left-number .number {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-orbitron);
}
.right-text {
  max-width: 700px;
}
.right-text h1 {
  font-size: 22px;
  font-family: var(--font-orbitron);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.right-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  max-width: 550px;
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 20px;
  }
  .main-content {
    flex-direction: column;
    gap: 20px;
  }
  .right-text h1 {
    font-size: 1.3rem;
  }
  .left-number .number {
    font-size: 2rem;
  }
  .pill-container {
    margin-bottom: 30px;
  }
}
.main-service .row {
  align-items: center;
  line-height: 31px;
  font-size: 17px;
  justify-content: space-around;
}
.service-img img {
  border-radius: 12px;
}
.service-content {
  margin: 0 26px;
}
.form-container {
  background: #0c2529;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #cccccc2b;
  box-shadow: #cccccc52 1px 0px 1px 1px;
}
m-label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: #333;
}
.form-container .form-label {
  color: #ffffff;
}
.form-container label {
  display: inline-block;
  color: #fff;
  font-size: 15px;
}
.form-control,
.form-select {
  font-size: 0.9rem;
  padding: 6px 12px;
}
.custom-file-upload {
  border: 1.5px dashed #ced4da;
  padding: 15px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fafafa;
}
.custom-file-upload:hover {
  border-color: #0d6efd;
  background-color: #f0f8ff;
}
.custom-file-upload input[type="file"] {
  display: none;
}
.custom-file-upload i {
  font-size: 1.2rem;
  color: #6c757d;
}
.form-text {
  font-size: 0.75rem;
  margin-top: 3px;
}
@media (max-width: 576px) {
  .form-container {
    padding: 15px;
  }
}
.form-control::placeholder {
  color: #fff;
}
.form-control,
.form-select {
  font-size: 0.9rem;
  padding: 6px 12px;
  background-color: #0f3b42;
}
.form-control:focus {
  color: #ffffff;
  background-color: #0f3b42;
  border-color: none;
  outline: 0;
  box-shadow: none;
}
.main-login.sec-pd {
  padding: 250px 0 100px;
}
.login-card {
  background-color: #1b343b;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  border: 1px solid #2c464e;
  margin: 0 auto;
  margin-top: 60px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}
.required {
  color: #ff4444;
  margin-left: 3px;
}
.form-group input[type="text"],
.form-group input[type="password"] {
  width: 100%;
  background-color: #254148;
  border: 1px solid #3c5a63;
  padding: 12px 15px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-group input:focus {
  border-color: #5c8a96;
}
.password-wrapper {
  position: relative;
}
.password-wrapper input[type="password"] {
  padding-right: 40px;
}
.toggle-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #ffffff;
  cursor: pointer;
}
.action-row {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.login-btn {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-btn:hover {
  background-color: #1a1a1a;
}
.remember-me {
  margin-left: 20px;
  display: flex;
  align-items: center;
}
.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #ffffff;
}
.remember-me label {
  color: #a0b4ba;
  font-size: 14px;
  cursor: pointer;
}
.lost-password {
  display: inline-block;
  color: #6cb2d1;
  text-decoration: none;
  font-size: 15px;
}
.lost-password:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .login-card {
    padding: 25px;
  }
  .action-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .remember-me {
    margin-left: 0;
    margin-top: 15px;
  }
}
.circle-btn {
  position: relative;
  width: 200px;
  height: 200px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  margin-left: 180px;
}
.circle-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.circle-btn svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
}
.circle-btn svg text {
  font-family: var(--font-orbitron);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  fill: #14282e;
  text-transform: uppercase;
}
.arrow-icon {
  font-size: 40px;
  color: #1b5e4b;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 400px) {
  .circle-btn {
    width: 150px;
    height: 150px;
  }
  .circle-btn svg text {
    font-size: 14px;
  }
  .arrow-icon {
    font-size: 30px;
  }
}
.circle-btn i {
  font-size: 44px;
  color: var(--green-color);
}
.product-page {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.product-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}
.product-details {
  flex: 1;
}
.product-title {
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 2px;
  color: #fff;
  font-family: var(--font-orbitron);
}
.product-price {
  font-size: 1.5rem;
  color: #a3e635;
  font-weight: 700;
  margin-bottom: 25px;
}
.product-desc {
  font-size: 0.95rem;
  color: #d1d5db;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 500px;
}
.section-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-orbitron);
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: #e5e7eb;
}
.radio-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #6b7280;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}
.radio-label input[type="radio"]:checked {
  border-color: #4ade80;
}
.radio-label input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4ade80;
}
.dynamic-section {
  margin-bottom: 30px;
  display: none;
  animation: fadeIn 0.3s ease;
}
.dynamic-section.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.message-box {
  width: 100%;
  background-color: #ffffff;
  border: none;
  padding: 15px;
  font-size: 1rem;
  color: #000;
  margin-top: 10px;
  resize: vertical;
  min-height: 100px;
}
.file-upload-wrapper {
  margin-top: 10px;
}
.file-upload-wrapper input[type="file"] {
  color: #e5e7eb;
  font-size: 0.9rem;
}
.file-hint {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 5px;
}
.instruction-text {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #fff;
  margin: 24px 0 9px;
}
.cart-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.quantity-input {
  width: 50px;
  height: 45px;
  background-color: #ffffff;
  border: none;
  text-align: center;
  font-size: 1.1rem;
  color: #000;
}
.category-row {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
.category-row a {
  color: #a3e635;
  text-decoration: none;
  padding: 0 12px;
}
.category-row a:hover {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    gap: 40px;
  }
  .product-details {
    width: 100%;
  }
  .product-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .product-title {
    font-size: 2rem;
  }
  .cart-row {
    flex-wrap: wrap;
  }
}
.review-wrapper {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}
.nav-pills {
  border-bottom: 1px solid #2c464e;
  margin-bottom: 40px;
}
.nav-pills .nav-link {
  color: #ffffff;
  background-color: transparent;
  border-radius: 0;
  border: 1px solid #2c464e;
  border-bottom: none;
  padding: 10px 20px;
  font-size: 0.95rem;
}
.nav-pills .nav-link.active {
  background-color: #e5e7eb;
  color: #14282e;
  font-weight: 600;
  border-color: #e5e7eb;
}
.nav-pills .nav-link:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.reviews-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.text-muted-custom {
  color: #d1d5db;
  margin-bottom: 5px;
}
.text-small {
  font-size: 0.9rem;
  color: #b0b8be;
}
.required-star {
  color: #ff4444;
  margin-left: 3px;
}
.star-rating {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.star-rating i {
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.3s;
}
.star-rating i:hover,
.star-rating i.active {
  color: #ffc107;
}
.form-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.form-control {
  background-color: #0f3b42;
  border: none;
  border-radius: 0;
  padding: 12px 15px;
  color: #0f3b42;
  font-size: 1rem;
}
.form-control:focus {
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.3);
  border: none;
  color: #fff;
  background-color: #254148;
}
.form-check-input {
  background-color: transparent;
  border-color: #ffffff;
  margin-right: 8px;
}
.form-check-input:checked {
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-submit {
  background-color: #e5e7eb;
  color: #14282e;
  border: none;
  padding: 8px 25px;
  font-weight: 600;
  border-radius: 0;
  margin-top: 20px;
}
.btn-submit:hover {
  background-color: #ffffff;
}
.form-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #fff;
}
.checkout-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.left-column {
  flex: 1;
  min-width: 300px;
}
.right-column {
  flex: 1;
  min-width: 300px;
}
.custom-card {
  background-color: #1b343b;
  border: 1px solid #2c464e;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}
.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.text-green {
  color: #a3e635;
  cursor: pointer;
}
.text-muted-light {
  color: #d1d5db;
  font-size: 0.9rem;
}
.required-star {
  color: #ff4444;
  margin-left: 3px;
}
.form-control,
.form-select {
  background-color: #254148;
  border: none;
  border-radius: 4px;
  padding: 12px 15px;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 2px rgba(163, 230, 53, 0.3);
}
.btn-login {
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 30px;
  font-weight: 600;
}
.btn-login:hover {
  background-color: #333333;
  color: #fff;
}
.form-check-input {
  background-color: transparent;
  border-color: #ffffff;
  margin-right: 10px;
}
.form-check-input:checked {
  background-color: #ffffff;
  border-color: #ffffff;
}
.order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.order-table th {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.order-table td {
  padding: 15px 0;
  vertical-align: top;
  color: #d1d5db;
}
.order-table td:last-child {
  text-align: right;
  color: #ffffff;
  font-weight: 600;
}
.order-table .product-title {
  display: block;
  color: #ffffff;
  margin-bottom: 5px;
}
.order-table .product-sub {
  color: #a3e636;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 15px;
}
.total-row {
  border-top: 1px solid #4ade80;
  padding-top: 10px;
  font-size: 1.2rem;
}
.collapsible-content {
  display: none;
  margin-top: 20px;
  animation: fadeIn 0.3s ease;
}
.collapsible-content.show {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.coupon-box {
  background-color: #1b343b;
  border: 1px solid #2c464e;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.ship-address {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .checkout-container {
    flex-direction: column;
  }
}
.product-title-01 {
  font-size: 25px;
}
.ship-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: #fff;
  font-family: var(--font-orbitron);
}
.ship-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  margin-right: 15px;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  transition: all 0.3s;
}
.ship-label input[type="checkbox"]:checked {
  background-color: #ffffff;
  border-color: #ffffff;
}
.ship-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: solid #14282e;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.shipping-form {
  background-color: #1b343b;
  border: 1px solid #2c464e;
  border-radius: 12px;
  padding: 30px;
  display: none;
  animation: fadeIn 0.3s ease;
}
.shipping-form.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.required-star {
  color: #ff4444;
  margin-left: 3px;
}
.form-control {
  background-color: #254148;
  border: none;
  border-radius: 6px;
  padding: 14px 15px;
  color: #9ca3af;
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.3s;
}
.form-control::placeholder {
  color: #9ca3af;
}
.form-control:focus {
  box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.2);
}
select.form-control {
  cursor: pointer;
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.cart-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
.cart-left {
  flex: 2;
}
.cart-right {
  flex: 1;
  min-width: 300px;
}
.custom-card {
  background-color: #1b343b;
  border: 1px solid #2c464e;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  padding: 15px 0;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}
.cart-table thead {
  border-bottom: 1px solid #4ade80;
}
.cart-table td {
  padding: 25px 0;
  vertical-align: middle;
  border-bottom: 1px solid #4ade80;
  color: #d1d5db;
}
.product-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}
.remove-icon {
  color: #a3e635;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
}
.remove-icon:hover {
  color: #ff4444;
}
.product-link {
  color: #a3e635;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 5px;
}
.product-link:hover {
  text-decoration: underline;
}
.product-options {
  font-size: 0.8rem;
  color: #9ca3af;
}
.product-options span {
  display: block;
  margin-bottom: 2px;
}
.price-tag {
  color: #a3e635;
  font-size: 1.1rem;
  font-weight: 600;
}
.qty-input {
  width: 60px;
  height: 40px;
  background-color: #ffffff;
  border: none;
  border-radius: 4px;
  text-align: center;
  font-size: 1rem;
  color: #000;
}
.btn-update {
  background-color: #1b343b;
  color: #ffffff;
  border: 1px solid #2c464e;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s;
}
.btn-update:hover {
  background-color: #2c464e;
  border-color: #4ade80;
}
.coupon-box {
  display: flex;
  gap: 15px;
  align-items: center;
}
.coupon-input {
  flex: 1;
  height: 50px;
  border: none;
  border-radius: 30px;
  padding: 0 20px;
  font-size: 1rem;
}
.coupon-input::placeholder {
  color: #6b7280;
}
.btn-apply {
  background-color: #000000;
  border: 1px solid #333;
  color: #ffffff;
  padding: 0 30px;
  height: 50px;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s;
  white-space: nowrap;
}
.btn-apply:hover {
  background-color: #333;
}
.totals-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-orbitron);
}
.totals-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}
.totals-row .label {
  color: #d1d5db;
}
.totals-row .value {
  color: #a3e635;
}
.shipping-details {
  font-size: 0.95rem;
  color: #d1d5db;
  margin-bottom: 20px;
}
.shipping-details .green-link {
  color: #a3e635;
  cursor: pointer;
  text-decoration: none;
}
.shipping-details .green-link:hover {
  text-decoration: underline;
}
.tax-row {
  border-top: 1px solid #4ade80;
  padding-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cart-container {
    flex-direction: column;
  }
  .product-options {
    display: none;
  }
  .cart-table thead {
    display: none;
  }
  .cart-table td {
    display: block;
    text-align: right;
    padding: 15px 0;
    border-bottom: none;
  }
  .cart-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    color: #ffffff;
  }
  .cart-table tr {
    border-bottom: 1px solid #4ade80;
    display: block;
    margin-bottom: 20px;
  }
}
.main-cart {
  padding: 240px 0;
}
