/* =====================================================
   MOLITER WEBSITE V2
   Header and Global Brand Styles
===================================================== */

:root {
  --moliter-red: #e60012;
  --moliter-red-dark: #bd0010;
  --moliter-black: #080808;
  --moliter-dark: #151515;
  --moliter-white: #ffffff;
  --moliter-gray: #a8a8a8;
  --moliter-border: rgba(255, 255, 255, 0.12);
}

/* V2 Header */
.moliter-v2-header {
  position: relative;
  z-index: 999;
  width: 100%;
  background: #080808;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.moliter-v2-header .moliter-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

/* Logo */
.moliter-v2-header .head-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.moliter-v2-header .head-logo a {
  display: flex;
  align-items: center;
}

.moliter-v2-header .head-logo img {
  display: block;
  width: auto;
  max-width: 205px;
  height: 48px;
  object-fit: contain;
}

/* Navigation */
.moliter-v2-header .head-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.moliter-v2-header .nav-ul {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.moliter-v2-header .nav-ul > li {
  position: relative;
  list-style: none;
}

.moliter-v2-header .nav-ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 0 18px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  transition: color 0.25s ease;
}

.moliter-v2-header .nav-ul > li > a::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  content: "";
  background: var(--moliter-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.moliter-v2-header .nav-ul > li > a:hover,
.moliter-v2-header .nav-ul > li > a.inmenu_1 {
  color: var(--moliter-red);
}

.moliter-v2-header .nav-ul > li > a:hover::after,
.moliter-v2-header .nav-ul > li > a.inmenu_1::after {
  transform: scaleX(1);
}

/* Dropdown Menu */
.moliter-v2-header .submenu {
  position: absolute;
  top: 86px;
  left: 0;
  z-index: 50;
  display: none;
  min-width: 230px;
  margin: 0;
  padding: 10px 0;
  background: #ffffff;
  border-top: 3px solid var(--moliter-red);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.moliter-v2-header .nav-ul > li:hover > .submenu {
  display: block;
}

.moliter-v2-header .submenu li {
  position: relative;
  list-style: none;
}

.moliter-v2-header .submenu li a {
  display: block;
  padding: 12px 21px;
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.moliter-v2-header .submenu li a:hover {
  color: var(--moliter-red);
  background: #fff2f3;
}

/* Quote Button */
.moliter-header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  height: 46px;
  margin-left: 22px;
  padding: 0 22px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: var(--moliter-red);
  border: 1px solid var(--moliter-red);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(230, 0, 18, 0.25);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.moliter-header-quote:hover {
  color: #ffffff;
  background: var(--moliter-red-dark);
  border-color: var(--moliter-red-dark);
  box-shadow: 0 12px 30px rgba(230, 0, 18, 0.38);
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.moliter-v2-header .m-menu {
  display: none;
}

/* Tablet */
@media screen and (max-width: 1200px) {
  .moliter-v2-header .head-logo img {
    max-width: 175px;
    height: 42px;
  }

  .moliter-v2-header .nav-ul > li > a {
    padding: 0 11px;
    font-size: 14px;
  }

  .moliter-header-quote {
    min-width: 125px;
    margin-left: 12px;
    padding: 0 16px;
  }
}

/* Mobile */
@media screen and (max-width: 991px) {
  .moliter-v2-header .moliter-header-inner {
    min-height: 68px;
  }

  .moliter-v2-header .head-logo img {
    max-width: 165px;
    height: 40px;
  }

  .moliter-v2-header .head-nav,
  .moliter-header-quote {
    display: none;
  }

  .moliter-v2-header .m-menu {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .moliter-v2-header .m-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition:
      background 0.25s ease,
      transform 0.25s ease;
  }

  .moliter-v2-header .m-menu:hover span {
    background: var(--moliter-red);
  }
}

/* Remove old template spacing above V2 header */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

body > header.moliter-v2-header {
  margin-top: 0 !important;
}

.moliter-v2-header {
  top: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.moliter-v2-header::before,
.moliter-v2-header::after {
  display: none !important;
}
/* Equal-height home quick-link cards */
.home-quick-links .quick-links-grid {
  align-items: stretch !important;
}

.home-quick-links .quick-link-card {
  display: flex !important;
  height: 100% !important;
  min-height: 150px !important;
  align-items: center !important;
}

.home-quick-links .quick-link-content {
  display: flex;
  min-height: 102px;
  flex: 1;
  flex-direction: column;
}

.home-quick-links .quick-link-content h2 {
  margin-bottom: 8px;
}

.home-quick-links .quick-link-content p {
  min-height: 44px;
  margin-bottom: 0;
}

.home-quick-links .quick-link-arrow {
  margin-top: auto;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .home-quick-links .quick-link-card {
    min-height: 120px !important;
  }

  .home-quick-links .quick-link-content {
    min-height: auto;
  }

  .home-quick-links .quick-link-content p {
    min-height: auto;
  }
}
/* =====================================================
   Fix V2 navigation alignment and underline
===================================================== */

.moliter-v2-header .nav-ul {
  display: flex !important;
  align-items: stretch !important;
  height: 86px !important;
}

.moliter-v2-header .nav-ul > li {
  position: relative !important;
  display: flex !important;
  align-items: stretch !important;
  height: 86px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.moliter-v2-header .nav-ul > li > a {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 86px !important;
  min-height: 86px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  line-height: 1 !important;
  vertical-align: middle !important;
}

/* Remove old template arrows and decoration */
.moliter-v2-header .nav-ul > li > a::before {
  display: none !important;
}

/* Short underline: fixed 34px, centered under text */
.moliter-v2-header .nav-ul > li > a::after {
  position: absolute !important;
  right: auto !important;
  bottom: 11px !important;
  left: 50% !important;
  width: 34px !important;
  height: 3px !important;
  content: "" !important;
  background: #e60012 !important;
  border-radius: 3px !important;
  transform: translateX(-50%) scaleX(0) !important;
  transform-origin: center !important;
  transition: transform 0.25s ease !important;
}

.moliter-v2-header .nav-ul > li > a:hover::after,
.moliter-v2-header .nav-ul > li > a.inmenu_1::after {
  transform: translateX(-50%) scaleX(1) !important;
}

/* Keep all menu labels on the same baseline */
.moliter-v2-header .nav-ul > li > a,
.moliter-v2-header .nav-ul > li > a span {
  font-size: 15px !important;
  font-weight: 600 !important;
}

/* Dropdown position */
.moliter-v2-header .submenu {
  top: 86px !important;
  left: 50% !important;
  min-width: 230px !important;
  max-height: 520px;
  overflow-y: auto;
  transform: translateX(-50%) !important;
  border-top: 3px solid #e60012 !important;
}

/* Make dropdown items more compact */
.moliter-v2-header .submenu > li > a {
  padding: 11px 18px !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}
/* Fix duplicated desktop/mobile banner images */

/* Desktop: show PC image only */
.home-banner .pcimg {
  display: block !important;
}

.home-banner .mobimg {
  display: none !important;
}

/* Mobile: show mobile image only */
@media screen and (max-width: 767px) {
  .home-banner .pcimg {
    display: none !important;
  }

  .home-banner .mobimg {
    display: block !important;
  }
}
/* =====================================================
   Moliter V2 Hero Banner
===================================================== */

.v2-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #ffffff;
  background: #070707;
}

.v2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle at 78% 45%,
      rgba(230, 0, 18, 0.25),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(230, 0, 18, 0.12),
      transparent 26%
    ),
    linear-gradient(
      110deg,
      #050505 0%,
      #0b0b0b 52%,
      #250005 100%
    );
}

.v2-hero-bg::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 900px;
  height: 900px;
  content: "";
  border: 1px solid rgba(230, 0, 18, 0.22);
  border-radius: 50%;
}

.v2-hero-bg::after {
  position: absolute;
  right: -8%;
  bottom: 120px;
  width: 65%;
  height: 2px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgba(230, 0, 18, 0.3),
    #e60012,
    transparent
  );
  box-shadow: 0 0 24px rgba(230, 0, 18, 0.75);
  transform: rotate(-12deg);
}

.v2-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  min-height: 720px;
}

/* Left content */

.v2-hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 35px 80px 0;
}

.v2-hero-eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  color: #d6d6d6;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.v2-hero-eyebrow::before {
  flex: 0 0 auto;
  width: 38px;
  height: 2px;
  margin-right: 12px;
  content: "";
  background: #e60012;
}

.v2-hero-title {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(50px, 4.3vw, 74px);
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: -2px;
  text-transform: none;
}

.v2-hero-title span {
  color: #e60012;
}

.v2-hero-text {
  max-width: 610px;
  margin: 28px 0 0;
  color: #c9c9c9;
  font-size: 17px;
  line-height: 1.75;
}

/* Feature labels */

.v2-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.v2-hero-features span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  color: #eeeeee;
  font-size: 13px;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
}

/* Buttons */

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  height: 54px;
  padding: 0 24px;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  border-radius: 4px;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.v2-btn-red {
  color: #ffffff !important;
  background: #e60012 !important;
  border: 1px solid #e60012 !important;
  box-shadow: 0 12px 28px rgba(230, 0, 18, 0.28);
}

.v2-btn-red:hover {
  color: #ffffff !important;
  background: #bd0010 !important;
  border-color: #bd0010 !important;
  box-shadow: 0 16px 34px rgba(230, 0, 18, 0.4);
  transform: translateY(-3px);
}

.v2-btn-outline {
  color: #ffffff !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.68) !important;
}

.v2-btn-outline:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.09) !important;
  border-color: #ffffff !important;
  transform: translateY(-3px);
}

/* Right product image */

.v2-hero-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}

.v2-hero-product img {
  position: relative;
  z-index: 2;
  display: block;
  width: 108%;
  max-width: 820px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 35px 55px rgba(0, 0, 0, 0.68));
  transform: perspective(1400px) rotateY(-7deg);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.v2-hero-product:hover img {
  filter: drop-shadow(0 42px 65px rgba(0, 0, 0, 0.78));
  transform:
    perspective(1400px)
    rotateY(-3deg)
    translateY(-5px);
}

.v2-product-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(230, 0, 18, 0.16);
  border-radius: 50%;
  filter: blur(85px);
}

/* Tablet */

@media screen and (max-width: 1200px) {
  .v2-hero,
  .v2-hero-inner {
    min-height: 650px;
  }

  .v2-hero-inner {
    grid-template-columns: 48% 52%;
  }

  .v2-hero-title {
    font-size: 52px;
  }

  .v2-hero-text {
    font-size: 16px;
  }

  .v2-hero-product {
    min-height: 560px;
  }

  .v2-hero-product img {
    width: 104%;
    max-width: 680px;
  }
}

/* Mobile */

@media screen and (max-width: 991px) {
  .v2-hero {
    min-height: auto;
  }

  .v2-hero-inner {
    display: flex;
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 50px;
    flex-direction: column;
  }

  .v2-hero-content {
    width: 100%;
    padding: 0;
  }

  .v2-hero-eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .v2-hero-eyebrow::before {
    width: 28px;
    margin-right: 9px;
  }

  .v2-hero-title {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .v2-hero-text {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .v2-hero-features {
    margin-top: 22px;
  }

  .v2-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .v2-btn {
    width: 100%;
    min-width: 0;
  }

  .v2-hero-product {
    width: 100%;
    min-height: 320px;
    margin-top: 32px;
  }

  .v2-hero-product img {
    width: 100%;
    max-width: 650px;
    transform: none;
  }

  .v2-hero-product:hover img {
    transform: translateY(-3px);
  }

  .v2-product-glow {
    width: 300px;
    height: 300px;
  }

  .v2-hero-bg::after {
    right: -20%;
    bottom: 50px;
    width: 120%;
  }
}

/* Small mobile */

@media screen and (max-width: 480px) {
  .v2-hero-inner {
    padding-top: 42px;
    padding-bottom: 38px;
  }

  .v2-hero-title {
    font-size: 36px;
  }

  .v2-hero-text {
    font-size: 14px;
  }

  .v2-hero-features span {
    padding: 6px 10px;
    font-size: 12px;
  }

  .v2-hero-product {
    min-height: 250px;
  }
}
.v2-hero {
  min-height: 720px !important;
  background: #070707 !important;
  color: #ffffff !important;
}

.v2-hero-title {
  color: #ffffff !important;
}

.v2-hero-title span {
  color: #e60012 !important;
}

/* =====================================================
   Moliter V2 Featured Products
===================================================== */

.v2-products-section {
  position: relative;
  padding: 105px 0 115px;
  overflow: hidden;
  background: #f7f7f8;
}

.v2-products-section::before {
  position: absolute;
  top: -220px;
  right: -220px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(230, 0, 18, 0.08);
  border-radius: 50%;
}

.v2-section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

.v2-section-eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: #e60012;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.v2-section-eyebrow::before {
  width: 38px;
  height: 2px;
  margin-right: 12px;
  content: "";
  background: #e60012;
}

.v2-section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.v2-section-title-row h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(38px, 3.2vw, 54px);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -1.5px;
  text-transform: none;
}

.v2-section-title-row p {
  max-width: 690px;
  margin: 18px 0 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
}

.v2-products-all {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding-bottom: 6px;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #e60012;
}

.v2-products-all span {
  margin-left: 18px;
  color: #e60012;
  font-size: 21px;
  transition: transform 0.25s ease;
}

.v2-products-all:hover {
  color: #e60012;
}

.v2-products-all:hover span {
  transform: translateX(5px);
}

.v2-products-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.v2-product-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e9e9eb;
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.045);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.v2-product-card:hover {
  border-color: rgba(230, 0, 18, 0.25);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.11);
  transform: translateY(-8px);
}

.v2-product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 48%, #ffffff 0%, #f4f4f5 75%);
}

.v2-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.v2-product-card:hover .v2-product-image img {
  transform: scale(1.055);
}

.v2-product-video {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #e60012;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(230, 0, 18, 0.25);
}

.v2-product-info {
  min-height: 215px;
  padding: 25px 26px 27px;
  border-top: 1px solid #eeeeef;
}

.v2-product-info h3 {
  min-height: 56px;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.v2-product-info h3 a {
  color: #161616;
  text-decoration: none;
}

.v2-product-info h3 a:hover {
  color: #e60012;
}

.v2-product-info p {
  min-height: 54px;
  margin: 13px 0 20px;
  color: #707070;
  font-size: 14px;
  line-height: 1.65;
}

.v2-product-link {
  display: inline-flex;
  align-items: center;
  color: #e60012;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.v2-product-link span {
  margin-left: 13px;
  font-size: 20px;
  transition: transform 0.25s ease;
}

.v2-product-link:hover span {
  transform: translateX(5px);
}

@media screen and (max-width: 1100px) {
  .v2-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .v2-products-section {
    padding: 72px 0 78px;
  }

  .v2-section-heading {
    margin-bottom: 34px;
  }

  .v2-section-title-row {
    display: block;
  }

  .v2-section-title-row h2 {
    font-size: 36px;
  }

  .v2-section-title-row p {
    margin-top: 15px;
    font-size: 15px;
  }

  .v2-products-all {
    margin-top: 24px;
  }

  .v2-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .v2-product-image {
    padding: 22px;
  }

  .v2-product-info {
    min-height: auto;
  }

  .v2-product-info h3,
  .v2-product-info p {
    min-height: auto;
  }
}

