@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
object,
embed,
video {
  max-width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #1A1A1A;
  background: #F5F0E8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.clearall {
  clear: both;
  height: 1px;
  width: auto;
}

.position {
  position: relative;
}

.dsplay {
  width: 100%;
  display: table;
  box-sizing: border-box;
}

.flt {
  float: left;
  width: 100%;
}

.ovrfl {
  overflow: hidden;
}

.fwsemi {
  font-weight: 600;
}

.fwblk {
  font-weight: 900;
}

/* --- Container --- */
.container {
  width: 1170px;
  margin: 0 auto;
  padding: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: #0F0F0F;
  border-bottom: 3px solid var(--mc-accent);
  padding: 14px 0;
  position: relative;
  z-index: 10;
}

.moon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mlogo {
  font-size: 0;
}

.logo {
  width: auto;
}

.hdrtxt {
  font-size: 14px;
  line-height: 22px;
  color: #ccc;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hdrtxt span {
  font-weight: 700;
  font-size: 16px;
  color: var(--mc-accent);
}

.phicon {
  height: 38px;
  width: 22px;
  background: url(../images/phicon.png) center center no-repeat;
  border: 2px solid var(--mc-accent);
  border-radius: 40px;
  display: inline-block;
  filter: invert(1);
  flex-shrink: 0;
}

/* ============================================================
   BANNER  — fully redesigned dark version
   ============================================================ */
.banner {
  background: #0F0F0F;
  padding: 0;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

/* Subtle star/constellation background pattern */
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(var(--mc-accent-rgb), 0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(var(--mc-accent-rgb), 0.10) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Diagonal accent stripe */
.banner::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(var(--mc-accent-rgb), 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.container.position {
  position: relative;
  z-index: 2;
}

/* car / right image */
.car {
  position: absolute;
  right: -20px;
  top: 40px;
  width: 42%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow:
    -8px 0 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(var(--mc-accent-rgb), 0.2);
  z-index: 1;
}

.bnrtop {
  min-height: 220px;
  padding-top: 52px;
  padding-bottom: 16px;
  max-width: 600px;
}

.bnrhd1 {
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bnrhd1 span {
  background: var(--mc-accent);
  color: #fff;
  padding: 4px 16px 5px;
  border-radius: 4px;
  display: inline-block;
}

.bnrhd2 {
  font-weight: 900;
  font-size: 42px;
  line-height: 52px;
  color: #FFFFFF;
  text-align: left;
  margin-top: 18px;
  letter-spacing: -1px;
}

/* Accent the discount part */
.bnrhd2 em {
  font-style: normal;
  color: var(--mc-accent);
}

.bnrtxt {
  font-weight: 500;
  font-size: 17px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.65);
  text-align: left;
  margin-top: 14px;
}

/* Banner strip */
.bnrstrip {
  position: relative;
  margin-top: 32px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(var(--mc-accent-rgb), 0.25);
}

.bnrimg {
  position: absolute;
  left: -20px;
  top: 32px;
}

ul.bnrlist {
  width: 54%;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

ul.bnrlist li {
  width: 50%;
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  position: relative;
  padding: 0 2%;
}

ul.bnrlist li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(var(--mc-accent-rgb), 0.35);
}

ul.bnrlist li:last-child::after {
  display: none;
}

ul.bnrlist li img {
  margin: 0 auto 10px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* CTA Button */
.bnrbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: var(--mc-accent);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  box-shadow: 0 4px 24px rgba(var(--mc-accent-rgb), 0.5), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
  transition: all 0.18s ease;
  cursor: pointer;
}

.bnrbtn:hover {
  background: #d960b0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--mc-accent-rgb), 0.6);
  color: #fff;
}

.bnrbtn img {
  height: 18px;
  filter: brightness(0) invert(1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 24px rgba(var(--mc-accent-rgb), 0.5);
  }

  50% {
    box-shadow: 0 6px 40px rgba(var(--mc-accent-rgb), 0.8), 0 0 60px rgba(var(--mc-accent-rgb), 0.2);
  }

  100% {
    box-shadow: 0 4px 24px rgba(var(--mc-accent-rgb), 0.5);
  }
}

.pulse {
  animation: pulse 2.2s ease-in-out infinite;
}

/* ============================================================
   STATUS STRIP
   ============================================================ */
.strip {
  background: #161616;
  border-bottom: 2px solid var(--mc-accent);
  border-top: 1px solid rgba(var(--mc-accent-rgb), 0.2);
  padding: 12px 0;
}

ul.strip-list {
  width: 65%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

ul.strip-list li {
  display: inline-block;
  position: relative;
  padding: 0 28px;
}

ul.strip-list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  height: 16px;
  width: 1px;
  background: #333;
}

ul.strip-list li:last-child::after {
  display: none;
}

ul.strip-list li p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  letter-spacing: 0.3px;
}

ul.strip-list li p strong {
  color: var(--mc-accent);
  font-weight: 800;
}

.txt1::before {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 8px 0 0;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  content: "";
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

@keyframes rotateP {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

.hourglass {
  display: inline-block;
  vertical-align: middle;
  margin: -4px 8px 0 0;
  animation: rotateP 2.5s ease-in-out infinite;
  filter: brightness(0) invert(1);
}

.clock {
  display: inline-block;
  margin: 0 8px -4px 0;
  width: 16px;
  filter: brightness(0) invert(1);
}

/* ============================================================
   SECTION 1 — LETTER
   ============================================================ */
.sec1 {
  background: #EDE8DC;
  padding: 64px 0;
}

.s1bx {
  width: 860px;
  margin: 0 auto;
  display: block;
  background: #fff;
  border: 2px solid #1A1A1A;
  border-radius: 16px;
  padding: 56px 64px 48px;
  box-shadow: 6px 6px 0 #1A1A1A;
}

.s1bx-imgbx {
  position: relative;
  /* padding: 0 0 0 260px; */
  /* min-height: 180px; */
}

.s1bx-imgbx img {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px;
}

.s1bx-imgbx p {
  /* padding-top: 80px; */
  font-size: 18px;
  line-height: 28px;
  font-style: italic;
  color: #555;
}

.s1bx-imgbx p span {
  font-weight: 900;
  font-size: 20px;
  color: #1A1A1A;
}

.s1txt1 {
  font-size: 19px;
  line-height: 30px;
}

.s1txt2 {
  font-weight: 800;
  font-size: 22px;
  line-height: 32px;
  color: var(--mc-accent);
}

.mar1 {
  margin-top: 20px;
}

.mar2 {
  margin-top: 40px;
}

.mar3 {
  margin-top: 30px;
}

/* ============================================================
   STRIP 2 — SLIDER
   ============================================================ */
.strip2 {
  background: #0F0F0F;
  padding: 40px 0 0;
}

.striphding {
  font-weight: 900;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  color: #F5F0E8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.strip2sldr {
  margin-top: 36px;
}

.sldrimg {
  margin: 0 auto;
  display: block;
  max-width: 96%;
}

/* ============================================================
   SECTION 2 — FORM
   ============================================================ */
.sec2 {
  background: #F5F0E8;
  padding: 60px 0;
}

/* Alert bar */
.redbar {
  background: #0F0F0F;
  border: 2px solid var(--mc-accent);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--mc-accent);
  padding: 14px 24px;
}

.redbar p {
  font-size: 17px;
  font-weight: 700;
  color: #F5F0E8;
  text-align: center;
  letter-spacing: 0.2px;
}

.redbar p img {
  vertical-align: middle;
  margin: 0 10px 0 0;
  filter: brightness(0) invert(1);
}

.redbar p span {
  color: var(--mc-accent);
  font-weight: 900;
}

/* Form layout */
.frmcontainer {
  margin-top: 32px;
}

.s2lft,
.s2rgt {
  float: left;
  display: inline-block;
  width: 48.5%;
}

.s2rgt {
  float: right;
}

/* Form box card */
.frmbx {
  background: #fff;
  border: 2px solid #1A1A1A;
  border-radius: 16px;
  padding: 28px 30px;
  width: 100%;
  display: block;
  margin-top: 24px;
  box-shadow: 4px 4px 0 #1A1A1A;
}

.frmhding {
  font-size: 19px;
  font-weight: 800;
  line-height: 28px;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  padding-bottom: 4px;
}

.frmhding strong {
  color: var(--mc-accent);
}

/* Form fields */
.frmElmnts1,
.frmElmnts2,
.frmElmnts3 {
  margin-top: 12px;
  float: left;
  width: 100%;
  position: relative;
}

.frmElmnts2,
.frmElmnts3 {
  display: inline-block;
  width: 48%;
}

.frmElmnts3 {
  float: right;
}

.fldicon {
  position: absolute;
  right: 14px;
  top: 14px;
}

.frmElmnts1 input,
.frmElmnts2 input,
.frmElmnts3 input,
.frmElmnts1 select,
.frmElmnts2 select,
.frmElmnts3 select {
  width: 100%;
  height: 48px;
  border: 2px solid #D0CAB8;
  border-radius: 10px;
  padding: 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
  background: #F9F6EF;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.frmElmnts1 input::placeholder,
.frmElmnts2 input::placeholder,
.frmElmnts3 input::placeholder {
  color: #aaa;
  font-weight: 500;
}

.frmElmnts1 input:focus,
.frmElmnts2 input:focus,
.frmElmnts3 input:focus,
.frmElmnts1 select:focus,
.frmElmnts2 select:focus,
.frmElmnts3 select:focus {
  border-color: var(--mc-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(var(--mc-accent-rgb), 0.12);
}

.frmElmnts1 select,
.frmElmnts2 select,
.frmElmnts3 select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url(../images/selectfldbg.png);
  background-repeat: no-repeat;
  background-position: 96% center;
  background-color: #F9F6EF;
  color: #777;
}

/* Delivery note */
.upstxt {
  background: url(../images/ups.png) left center no-repeat;
  background-size: 36px;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  color: #1A1A1A;
  float: left;
  width: 100%;
  margin-top: 16px;
  padding: 8px 0 8px 52px;
}

/* ============================================================
   RIGHT SIDE — PRODUCT BOX TOP
   ============================================================ */
.frm_bx_tp {
  background: #0F0F0F;
  border: 2px solid #1A1A1A;
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--mc-accent);
  margin-top: 24px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 130px;
}

.s2rgtimg {
  width: 120px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 2px solid rgba(var(--mc-accent-rgb), 0.3);
}

.s2rgt-hding {
  font-weight: 900;
  font-size: 17px;
  line-height: 22px;
  color: #FFFFFF;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.s2rgt-txt1 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.s2rgt-txt1 img {
  vertical-align: middle;
  margin: 0 4px -2px 0;
}

.s2rgt-txt2 {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.s2rgt-txt2 span {
  background: rgba(var(--mc-accent-rgb), 0.2);
  color: var(--mc-accent-soft);
  border: 1px solid rgba(var(--mc-accent-rgb), 0.4);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   QUANTITY SELECTOR
   ============================================================ */
.qtbx {
  border-top: 2px solid #EDE8DC;
  border-bottom: 2px solid #EDE8DC;
  padding: 8px 0;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qtbx-txt1 {
  font-weight: 800;
  font-size: 16px;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qtbx-txt2 {
  background: var(--mc-accent);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 18px 7px 24px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 12px rgba(var(--mc-accent-rgb), 0.35);
}

.triangle-right {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-left: 12px solid #fff;
  border-bottom: 17px solid transparent;
}

/* Product rows */
.prdbx {
  border: 2px solid #E0D8CC;
  border-radius: 14px;
  margin-top: 10px;
  position: relative;
  padding: 14px 14px 14px 148px;
  background: #FAFAF7;
  cursor: pointer;
  min-height: 82px;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
}

.prdbx:hover {
  border-color: var(--mc-accent);
  background: var(--mc-accent-pale);
  box-shadow: 0 2px 12px rgba(var(--mc-accent-rgb), 0.12);
}

.prdbx.active {
  background: #FFF0FA;
  border: 2px solid var(--mc-accent);
  box-shadow: 3px 3px 0 #1A1A1A, 0 0 0 4px rgba(var(--mc-accent-rgb), 0.1);
  transform: scale(1.02);
}

.prdbx-spl {
  min-height: 96px;
}

.ecomseal-small1,
.ecomseal-small2,
.qtbx1,
.qtbx2 {
  position: absolute;
}

.ecomseal-small1 {
  left: 32px;
  top: 4px;
}

.ecomseal-small2 {
  left: 28px;
  top: 8px;
}

.qtbx1,
.qtbx2 {
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 36px;
  background: var(--mc-accent);
  border-radius: 50%;
  font-weight: 900;
  font-size: 13px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(var(--mc-accent-rgb), 0.4);
}

.qtbx2 {
  top: 50%;
  transform: translateY(-50%);
}

.prdbx-lft,
.prdbx-rgt {
  float: left;
  display: inline-block;
  width: 66%;
}

.prdbx-rgt {
  width: 33%;
  float: right;
  padding: 0 8px 0 0;
  text-align: right;
}

.prdbx-lft-txt {
  font-size: 14px;
  line-height: 21px;
}

.prdbx-lft-txt span {
  font-weight: 800;
  color: #1A1A1A;
}

.prdbx-lft-txt2 {
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
  margin-top: 4px;
  color: #666;
}

.prdbx-rgt-txt,
.prdbx-rgt-txt2 {
  font-size: 15px;
  font-weight: 800;
  line-height: 22px;
  text-align: right;
  color: #1A1A1A;
}

.prdbx-rgt-txt2 {
  font-size: 13px;
  font-weight: 700;
  color: #555;
}

.stk {
  color: var(--mc-accent);
}

.bestdeal {
  display: inline-block;
  background: var(--mc-accent);
  color: #fff;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 5px;
}

.plt1 {
  padding-top: 0;
}

/* ============================================================
   PAYMENT SECTION
   ============================================================ */
.ccard {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ccard img {
  height: 28px;
}

.whats-this {
  color: var(--mc-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  display: inline-block;
}

.cvv-box {
  width: 100%;
  float: left;
  position: relative;
  z-index: 100;
  display: none;
}

/* Offer checkboxes */
.rgtofferbx {
  margin: 14px 0 0;
  border: 2px solid #D0CAB8;
  border-radius: 12px;
  float: left;
  width: 100%;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.rgtofferbx:hover {
  border-color: var(--mc-accent);
}

.rgtofferbx-hd {
  background: #1A1A1A;
  padding: 10px 14px 10px 90px;
  position: relative;
  display: flex;
  align-items: center;
}

.lftarw {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes arrowPulse {

  0%,
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-50%) translateX(5px);
    opacity: 0.6;
  }
}

.lftarw {
  animation: arrowPulse 1.5s ease-in-out infinite;
  filter: brightness(0) invert(1);
}

.chkbx {
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  accent-color: var(--mc-accent);
  cursor: pointer;
}

.rgtofferbx-hd p {
  font-weight: 800;
  font-size: 14px;
  color: #F5F0E8;
  text-align: left;
  letter-spacing: 0.3px;
}

.offbxtxt {
  font-size: 13px;
  line-height: 21px;
  color: #555;
  padding: 12px 16px;
  background: #FAFAF7;
}

.offbxtxt span {
  font-weight: 800;
  color: var(--mc-accent);
}

/* Order total */
ul.totallist {
  border: 2px solid #1A1A1A;
  border-radius: 12px;
  padding: 10px 16px;
  margin-top: 20px;
  background: #fff;
  box-shadow: 2px 2px 0 #E0D8CC;
}

ul.totallist li {
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #EDE8DC;
}

ul.totallist li:last-child {
  border-bottom: none;
}

.tottxt1 {
  font-weight: 900;
  font-size: 16px;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tottxt2 {
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
}

.tottxt2 strong {
  color: var(--mc-accent);
  font-size: 18px;
  font-weight: 900;
}

/* Submit button */
.frmbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 0;
  width: 100%;
  border-radius: 12px;
}

/* Guarantee text */
.hurry {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  color: #888078;
}

.secureimg {
  margin: 28px auto 0;
  display: block;
  max-width: 100%;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.section-heading {
  text-align: center;
  margin: 36px 0 24px;
}

.section-heading h2 {
  font-size: 26px;
  font-weight: 900;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background: var(--mc-accent);
  border-radius: 2px;
  margin: 10px auto 0;
}

.reviews-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: #fff;
  border: 2px solid #1A1A1A;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 3px 3px 0 #1A1A1A;
}

.stars {
  color: var(--mc-accent);
  font-size: 18px;
  margin-bottom: 10px;
}

.stars span {
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 700;
}

.review-card h3 {
  font-size: 16px;
  font-weight: 900;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.review-text {
  font-size: 14px;
  line-height: 22px;
  color: #555;
  margin-bottom: 16px;
}

.review-footer {
  border-top: 1px solid #EDE8DC;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-user h4 {
  font-size: 14px;
  font-weight: 800;
  color: #1A1A1A;
}

.verified {
  font-size: 12px;
  color: var(--mc-accent);
  font-weight: 700;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.sec3 {
  background: #EDE8DC;
  padding: 64px 0;
}

.sec3 .striphding {
  color: #1A1A1A;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

#accordion {
  margin: 36px auto 0;
  display: block;
  width: 1010px;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  background: #fff url(../images/plus.png) 98% 20px no-repeat;
  border: 2px solid #1A1A1A;
  border-radius: 12px;
  text-align: left;
  padding: 18px 44px 18px 22px;
  margin: 10px 0 0;
  outline: none;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  color: #1A1A1A;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.ui-accordion .ui-accordion-header:hover {
  border-color: var(--mc-accent);
  background-color: var(--mc-accent-pale);
}

.ui-accordion .ui-accordion-header.active {
  background: #0F0F0F url(../images/minus.png) 98% 20px no-repeat;
  color: #F5F0E8;
  border-radius: 12px 12px 0 0;
  border-color: #0F0F0F;
}

.ui-accordion .ui-accordion-content {
  overflow: auto;
  border: 2px solid #1A1A1A;
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.accord-txt {
  float: left;
  width: 100%;
  background: #fff;
  padding: 14px 22px 24px;
  font-size: 15px;
  line-height: 26px;
  color: #555;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0F0F0F;
  border-top: 3px solid var(--mc-accent);
  padding: 36px 0 28px;
}

ul.ftrlist {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}

ul.ftrlist li {
  display: inline-flex;
  align-items: center;
  border-right: 1px solid #2a2a2a;
  padding: 0 14px;
  font-size: 13px;
  color: #666;
}

ul.ftrlist li:last-child {
  border-right: none;
}

ul.ftrlist li a {
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  transition: color 0.15s ease;
}

ul.ftrlist li a:hover {
  color: var(--mc-accent);
}

.ftrtxt {
  font-size: 12px;
  font-weight: 500;
  color: #444;
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.3px;
}

/* ============================================================
   VISIBILITY HELPERS
   ============================================================ */
.hide-767 {
  display: block;
}

.show-767 {
  display: none;
}

.hide_tab {
  display: inline;
}

.show-479 {
  display: none;
}
.formbonly{
  display: none;
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media only screen and (max-width: 1190px) {
  .container {
    max-width: 1000px;
    width: 100%;
  }

  .car {
    right: -10px;
    width: 42%;
    top: 60px;
  }

  .bnrimg {
    width: 260px;
    top: 100px;
  }

  #accordion {
    width: 100%;
  }
}

@media only screen and (max-width: 1020px) {
  .container {
    max-width: 760px;
    width: 100%;
  }

  .banner {
    min-height: auto;
  }

  .bnrhd2 {
    font-size: 30px;
    line-height: 38px;
  }

  ul.strip-list {
    width: 96%;
  }

  .s1bx {
    width: 100%;
  }

  .s1bx-imgbx {
    /* padding: 0 0 0 240px; */
  }

  .frmbx {
    padding: 20px 18px;
  }

  .frmhding {
    font-size: 17px;
  }

  .prdbx {
    padding: 12px 12px 12px 124px;
  }

  .prdbx-lft-txt {
    font-size: 13px;
    line-height: 19px;
  }

  .prdbx-rgt-txt {
    font-size: 13px;
  }

  .qtbx1,
  .qtbx2 {
    left: 80px;
    height: 32px;
    width: 32px;
    line-height: 32px;
    font-size: 13px;
  }

  .ecomseal-small1 {
    left: 26px;
    width: 48px;
  }

  .ecomseal-small2 {
    left: 22px;
    top: 18px;
    width: 46px;
  }

  .frm_bx_tp {
    min-height: auto;
  }

  .s2rgtimg {
    width: 100px;
  }

  .sec3 {
    padding: 48px 0;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    max-width: 640px;
  }

  .bdinpad {
    padding: 0 14px;
  }

  .hide-767 {
    display: none;
  }

  .show-767 {
    display: block;
  }

  .hide_tab {
    display: none;
  }

  .header {
    padding: 10px 0;
  }

  .banner {
    min-height: auto;
    padding: 24px 0 28px;
  }

  .bnrtop {
    padding-top: 24px;
    max-width: 100%;
  }

  .bnrhd1 {
    text-align: center;
  }

  .bnrhd2 {
    font-size: 26px;
    line-height: 34px;
    text-align: center;
  }

  .bnrtxt {
    text-align: center;
  }

  .bnrstrip {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(var(--mc-accent-rgb), 0.2);
    margin: 20px 0 0;
    padding: 16px 0 16px 140px;
    position: relative;
  }

  .bnrimg-mob {
    position: absolute;
    left: 10px;
    top: -8px;
    width: 120px;
    border-radius: 8px;
  }

  ul.bnrlist {
    width: 100%;
    margin: 0;
  }

  ul.bnrlist li {
    width: 100%;
    padding: 0 0 0 20px;
    text-align: left;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.8);
  }

  ul.bnrlist li:first-child {
    margin: 0;
  }

  ul.bnrlist li img {
    display: none;
  }

  ul.bnrlist li::after {
    display: none;
  }

  .bnrbtn {
    margin: 20px auto 0;
    display: flex;
    width: fit-content;
  }

  ul.strip-list {
    width: 100%;
  }

  ul.strip-list li {
    float: left;
    width: 50%;
    padding: 0 8px;
  }

  ul.strip-list li:last-child {
    width: 100%;
    margin-top: 8px;
  }

  ul.strip-list li:nth-child(2)::after {
    display: none;
  }

  .sec1 {
    padding: 36px 0;
  }

  .s1bx {
    padding: 24px 18px 22px;
  }

  .s1bx-imgbx {
    /* padding: 0 0 0 160px; */
    /* min-height: 130px; */
  }

  .s1bx-imgbx img {
    width: 140px;
  }

  .s1bx-imgbx p {
    padding-top: 24px;
    font-size: 15px;
  }

  .s1txt1 {
    font-size: 16px;
    line-height: 26px;
  }

  .s1txt2 {
    font-size: 18px;
    line-height: 28px;
  }

  .strip2 {
    padding: 28px 0 0;
  }

  .striphding {
    font-size: 22px;
  }

  .sec2 {
    padding: 36px 0;
  }

  .redbar p {
    font-size: 15px;
    line-height: 22px;
  }

  .s2lft,
  .s2rgt {
    width: 100%;
  }

  .frmbx {
    margin-top: 16px;
    padding: 18px;
  }

  .frm_bx_tp {
    flex-direction: row;
    min-height: auto;
  }

  .s2rgtimg {
    width: 33%;
  }

  .prdbx-lft-txt {
    font-size: 14px;
    line-height: 20px;
  }

  .prdbx-lft-txt2 {
    font-size: 13px;
    line-height: 20px;
  }

  .prdbx-rgt-txt {
    font-size: 14px;
  }

  .sec3 {
    padding: 36px 0;
  }

  #accordion {
    margin: 22px auto 0;
  }

  .ui-accordion .ui-accordion-header {
    font-size: 15px;
    padding: 14px 38px 14px 14px;
  }

  .accord-txt {
    font-size: 14px;
    padding: 10px 14px 20px;
  }

  footer {
    padding: 24px 0 20px;
  }
}

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

  .frmElmnts2,
  .frmElmnts3 {
    width: 100%;
    float: left;
  }

  .show-479 {
    display: inline;
  }

  .bnrstrip {
    padding: 14px 0 14px 120px;
  }

  .bnrimg-mob {
    width: 108px;
    left: 4px;
  }

  .prdbx {
    padding: 12px 12px 12px 110px;
    min-height: 76px;
  }

  .prdbx-spl {
    min-height: 96px;
  }

  .prdbx-lft-txt {
    font-size: 12px;
    line-height: 17px;
  }

  .prdbx-lft-txt2 {
    font-size: 11px;
    line-height: 16px;
  }

  .prdbx-rgt-txt {
    font-size: 13px;
  }

  .prdbx-rgt-txt2 {
    font-size: 12px;
    line-height: 17px;
  }

  .qtbx1 {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 12px;
  }

  .qtbx2 {
    font-size: 12px;
  }

  .s2rgt-hding {
    font-size: 15px;
  }

  .s2rgt-txt2 {
    font-size: 10px;
  }

  .hurry {
    font-size: 12px;
  }

  .tottxt1 {
    font-size: 14px;
  }

  .tottxt2 {
    font-size: 13px;
  }
}

@media only screen and (max-width: 389px) {
  .s1bx-imgbx {
    /* padding: 0 0 0 120px; */
  }

  .s1bx-imgbx img {
    width: 108px;
  }

  .bnrstrip {
    padding: 14px 0 14px 104px;
  }

  .bnrimg-mob {
    width: 96px;
    top: 0;
  }

  .prdbx {
    padding: 10px 10px 10px 96px;
  }

  .bestdeal {
    font-size: 9px;
    padding: 2px 8px;
  }

  .ecomseal-small1 {
    width: 40px;
    left: 22px;
  }

  .qtbx1,
  .qtbx2 {
    left: 66px;
    height: 26px;
    width: 26px;
    line-height: 26px;
    font-size: 11px;
  }

  .frmhding {
    font-size: 16px;
  }
}

.bnrbtn {
  margin-bottom: 40px;
}

.frmbx {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-between;
}

.prdbx {
  width: 100%;
}

/* prdbx_css */
.pricing-wrap {
  max-width: 520px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border: 2px solid #d7cec0;
  border-radius: 22px;
  background: #f5f4f1;
  box-shadow: 0 2px 0 #000;
}

.left-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticker-wrap {
  position: relative;
  min-width: 92px;
}

.sticker-wrap img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.qty {
  position: absolute;
  right: 6px;
  bottom: 4px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mc-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 3px solid #f5f4f1;
}

.info h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
  color: #111;
}

.info p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
  max-width: 220px;
}

.price {
  text-align: right;
  min-width: 90px;
}

.price strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  color: #111;
  font-weight: 800;
}

.price span {
  font-size: 15px;
  color: #5a5a5a;
  font-weight: 700;
}

.active {
  border: 3px solid var(--mc-accent);
  background: var(--mc-accent-pale);
}

.badge {
  position: absolute;
  top: 14px;
  left: 125px;
  background: var(--mc-accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.mt-25 {
  margin-top: 25px;
}

@media (max-width:600px) {
  .price-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .price {
    width: 100%;
    text-align: left;
    padding-left: 108px;
  }

  .badge {
    left: 120px;
  }
}

.helpline-box {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding: 12px 18px;
}

.icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid #b8b8d8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--mc-accent);
}

.help-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.help-content span {
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.help-content a {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

@media (max-width:1190px) {
  .car {
    box-shadow: none;
  }

  .car {
    right: -10px;
    width: 39%;
    top: 130px;
  }
}

@media (max-width:575px) {
  .mlogo {
    width: 35%;
  }
  .s2lft input{
    font-size: 16px;
  }
  
}
.bnrstripmb{
  display: none;
}
@media(max-width:767px){
  .formbonly{
    display: block;
    text-align: center;
  }
  .formbonly img{
        position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 10px;
  }
  .bnrstrip{
    margin-top: 0;
  }
  .bnrstripmb{
    display: block;
  }
  .bnrlistmb li{
        display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .bnrlistmb li img{
        display: block;
    filter: brightness(0) invert(1);
    opacity: 0.7;
  }
  .bnrlistmb li p{
        font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.80);
  }
  .bnrlistmb{
        background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(var(--mc-accent-rgb), 0.2);
   
    padding: 16px 10px 16px;
            display: flex;
        justify-content: space-evenly;
  }
  .bnrstrip{
    display: none;
  }
}
@media(max-width:360px){
  .bnrlistmb li img{
            width: 30px;
  }
  .bnrlistmb li p{
    font-size: 12px;
  }
  .bnrlistmb{
            padding: 16px 0px 16px;
  }
}
#accordion {
  height: auto !important;
}