body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: inherit;
}
a:active,
a:focus {
  outline: 0 none;
}
button {
  -webkit-appearance: none;
  border: none;
  color: inherit;
  background: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 400;
  margin: 0;
  padding: 0;
}
input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
img {
  -o-object-fit: cover;
  object-fit: cover;
}
::-moz-selection {
  background: #000;
  text-shadow: none;
  color: #fff;
}
::selection {
  background: #000;
  text-shadow: none;
  color: #fff;
}
::selection a {
  color: #fff;
}
::-moz-selection a {
  color: #fff;
}
::-webkit-input-placeholder {
  opacity: 1;
}
:-moz-placeholder,
::-moz-placeholder {
  color: #000;
  opacity: 1;
}
:-ms-input-placeholder {
  opacity: 1;
}
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo {
  width: 160px;
  height: auto;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

    

.heroSection {
  background-image: url("../assets/images/mobileHeroBg.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 2px solid #00142d;
  position: relative;
  padding-bottom: 50px;
  height: 600px;
}

.announcementBar {
  height: 40px;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #00142d;
  background: linear-gradient(
    90deg,
    #9f8fff 0%,
    #ffa3ff 25.33%,
    #ff8b8b 50.33%,
    #ffe092 74.81%,
    #a9ff99 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 0px;
}

.announcementContent {
  display: flex;
  width: 200%;
}

.announcementText {
  display: flex;
  justify-content: space-evenly;
}

.announcementLink {
  font-family: Menco-Black, sans-serif;
  font-size: 16px;
  line-height: 1.48;
  letter-spacing: 0.8px;
  color: #00142d;
  white-space: nowrap;
  margin-left: 15px;
}

.desktopHeader {
  width: 100%;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.headerNav {
  position: relative;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgb(255 255 255 / 78%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.25);
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
  padding-left: 27px;
  height: 62px;
  z-index: 99;
  opacity: 0.9;
}

.navLink,
.menuLink {
  width: 100%;
  color: #fff;
  text-wrap: nowrap;
  text-shadow: -1px 1px #00142d;
  font-family: TTTrailers-Black, serif;
  -webkit-text-stroke: 0.5px #00142d;
  font-size: 24px;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  transform-origin: 0 100%;
  transition: all 0.4s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}

.navLink:hover {
  transform: rotate(-3deg);
  cursor: pointer;
}

.cartBtn {
  display: flex;
  width: 47px;
  height: 43px;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  border: 1px solid #00142d;
  background: #fff;
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.25);
}
.cartIcon {
  width: 19px;
  height: 19px;
  transition: all 0.4s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
.cartBtn:hover {
  cursor: pointer;
  transform: rotate(8deg) translateY(-3px) translateZ(30px);
}
.cartBtn:hover svg path {
  fill: #477dfd;
}

.humBurger {
  z-index: 1001;
}

#humBurgerIcon .line {
  transition: transform 0.4s cubic-bezier(0.47, 1.64, 0.41, 0.8),
    opacity 0.4s ease-in-out;
}

#humBurgerIcon .line1,
#humBurgerIcon .line3 {
  transform-origin: center;
}

#humBurgerIcon.open .line1 {
  transform: rotate(45deg) translate(4px, 4px);
}

#humBurgerIcon.open .line2 {
  opacity: 0;
  transform: scaleX(0);
}

#humBurgerIcon.open .line3 {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobileHeader {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.expandedMenu {
  position: absolute;
  top: 6px;
  width: 45px;
  height: 41px;
  background: #fff;
  border-radius: 13px;
  border: 1px solid #00142d;
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 1s cubic-bezier(0.47, 1.64, 0.41, 0.8),
    width 0.6s cubic-bezier(0.47, 1.64, 0.41, 0.8),
    height 0.6s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  z-index: 1000;
}

.expandedMenu.open {
  width: 90%;
  height: fit-content;
  z-index: 1000;
  padding-bottom: 35px;
}

.expandedMenuContent {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.expandedMenu.open .expandedMenuContent {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  opacity: 1;
  margin-top: 50px;
}
.menuLink {
  font-size: 42px;
  width: auto;
}

.svg-grid {
  position: absolute;
  left: 0;
  opacity: 0.3;
  top: 0;
}

.view-home {
  position: relative;
  overflow: hidden;
  padding-top: 10px;
}
.view-home section {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.view-home:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  pointer-events: none;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: linear-gradient(
      180deg,
      #c2ecff 4.69%,
      #3e83fe 20.31%,
      #97bdff 30.73%,
      #6ebaca 51.13%,
      #5964d0 61.09%,
      #f1a7fa 76.46%,
      #074fcf
    ),
    #f5fdff;
}
.view-home:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: url("../assets/svg/grid.svg");
  background-repeat: repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.pink-btn {
  --color: #f5fdff;
  --color-hover: #010101;
  --hover-back: #477dfd;
  --hover-front: #f5fdff;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
  color: var(--c, var(--color));
  transition: all 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: 58px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: #010101;
  border: 1px solid #000;
  border-radius: 100px;
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.25);
}

.pink-btn span:not(.tag) {
  z-index: 3;
  position: relative;
  transform: scale(1) translateZ(0);
  display: flex;
  align-items: center;
  color: #fff;
  text-shadow: -3px 3px rgba(0, 20, 45, 0.7490196078);
  -webkit-text-stroke: 1px #00142d;
  text-stroke: 1px #00142d;
  font-family: TTTrailers-Black, serif;
  font-size: 18px;
  line-height: 0.91;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.pink-btn:after,
.pink-btn:before {
  content: "";
  position: absolute;
  background: var(--pb, var(--hover-back));
  top: 0;
  left: 0;
  right: 0;
  height: 200%;
  border-radius: var(--br, 40%);
  transform: translateY(var(--y, 50%));
  transition: border-radius 0.45s cubic-bezier(0.445, 0.05, 0.55, 0.95)
      var(--br-d, 0.08s),
    transform var(--d, 0.35s) cubic-bezier(0.445, 0.05, 0.55, 0.95)
      var(--d-d, 0s);
}

.pink-btn:after {
  --pb: var(--hover-front);
  --d: 0.39s;
}

.pink-btn:before {
  --d-d: 0.06s;
}

html:not(.touch) .pink-btn:hover {
  transform: translate3d(1px, 1px, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
  transition: all 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s;
  --name: move;
  --c: var(--color-hover);
}

html:not(.touch) .pink-btn:hover:after,
html:not(.touch) .pink-btn:hover:before {
  --y: 0;
  --br: 0;
}

.hero-wrapper {
  display: flex;
  margin-top: 0px;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding-right: 10px;
  z-index: 1;
  padding-top: 180px;
}
.hero-content {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 380px;
  gap: 20px;
}
.hero-content .pink-btn span {
  font-size: 30px;
}
.heading {
  color: #fff;
  text-shadow: -3px 3px rgba(0, 20, 45, 0.7490196078);
  -webkit-text-stroke: 1px #00142d;
  text-stroke: 1px #00142d;
  font-family: TTTrailers-Black, serif;
  font-size: 55px;
  line-height: 0.91;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.subheading {
  color: #00142d;
  font-family: Menco-Black, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  text-transform: uppercase;
}

.inner-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
.inner-content .heading {
  font-size: 54px;
}
#myHeader {
  position: fixed;
  /* top: 0; */
  width: 100%;
  min-width: 90%;
  z-index: 999;
}
.newsletterContainer {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}
.newsletterContainer .subheading {
  color: #000;
}
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.newsletter input {
  width: 97%;
  overflow: hidden;
  height: 50px;
  border-radius: 10px;
  font-size: 16px;
  border: 0;
  padding-left: 3%;
  outline: 0;
  font-family: Menco-Black, sans-serif;
}
.newsletter button {
  width: 100%;
  height: 50px;
  border-radius: 10px;
}
/* Targeting the Contact Form 7 button */
.newsletter .wpcf7-form-control.wpcf7-submit {
  margin-top: 20px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background-color: #000000; /* Example background color */
  color: #fff; /* Example text color */
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: Menco-Black, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.newsletter .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #ffffff; /* Example hover background color */
  color: #000000;
}
footer .heading {
  display: inline-block;
  padding-top: 40px;
  padding-bottom: 30px;
}
.contact-container,
.modal-container {
  display: flex;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 13px;
  border: 2px solid #00142d;
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.25);
}
.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000;
  width: 90%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
  overflow: hidden;
  max-width: 1084px;
}

@media screen and (min-width: 767px) {
  .modal-container {
    min-height: 450px;
  }
}
@media screen and (max-width: 1440px) {
  .modal-container .contact-image {
    width: 60%;
  }
}

.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000000000000000000000000;
}

.closePopupBtn {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}
.contact-image {
  display: none;
}

.contact-form {
  width: 100%;
  height: 100%;
  padding: 50px 10px;
  text-align: center;
  background: linear-gradient(
    135deg,
    #c1ecff,
    #c1ecff 25%,
    #fff 38.17%,
    #c2ecff 60.83%,
    #c1ecff
  );
}

.contact-form label {
  color: #00142d;
  font-size: 16px;
  padding: 0 0 8px 20px;
  display: block;
  white-space: nowrap;
  font-family: Menco-Medium, sans-serif;
  text-align: start;
}

.contact-form input,
.contact-form textarea {
  color: #00142d;
  font-size: 16px;
  line-height: 1.45;
  text-transform: uppercase;
  border-radius: 29px;
  border: 1px solid #00142d;
  background: #fff;
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.25);
  outline: none;
  margin-bottom: 24px;
  padding: 16px 24px;
  width: 100%;
  box-sizing: border-box;
  font-family: Menco-Medium, sans-serif;
}

.contact-form textarea {
  min-height: 110px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #00142d;
  font-family: Menco-Medium, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

.contact-form .pink-btn {
  margin: 0 auto;
  width: 100%;
}

.contact-form .subheading {
  font-size: 30px;
  margin-bottom: 24px;
  margin-top: 6px;
}

@media screen and (min-width: 767px) {
  .contact-form .subheading {
    margin-top: 40px;
  }
}
.contact-form .pink-btn span {
  font-size: 50px !important;
}
.inputGroup {
  display: block;
}

@media screen and (min-width: 767px) {
  .inputGroup {
    display: flex;
    gap: 10px;
    flex:1;
    min-width: calc(50% - 10px);
  }
  .contact-image {
    display: block;
    width: 40%;
    background: url("../assets/images/latest.jpg") no-repeat center center/cover;
  }
  .contact-image2 {
    display: block;
    width: 40%;
    background: url("../assets/images/comicform.jpg") no-repeat center center/cover;
  }
  .contact-form {
    width: 60%;
    padding: 40px 20px;
  }
  .announcementLink {
    font-size: 18px;
    margin-left: 40px;
  }
  #myHeader {
    min-width: 80%;
  }
  .desktopHeader {
    display: flex;
  }
  .heroSection {
    background-image: url("../assets/images/heroBg.jpg");
    background-position: top;
  }
  .mobileHeader {
    display: none;
  }
  .pink-btn {
    width: 300px;
    height: 62px;
  }
  .pink-btn span:not(.tag) {
    font-size: 28px;
    text-shadow: -2px 2px #00142d;
    line-height: 0.8;
    letter-spacing: -1px;
  }
  .hero-wrapper {
    margin-top: 0px;
  }
  .hero-wrapper .hero-content {
    max-width: 419.1px;
    gap: 30px;
  }
  .subheading {
    font-size: 20px;
  }

  .heading {
    font-size: 60px;
    -webkit-text-stroke: -3px 3px #00142d;
    text-shadow: -3px 3px #00142d;
    letter-spacing: -1.4px;
  }
  .pudgy-sale {
    padding: 60px 0;
  }
  .newsletter {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  .newsletter button {
    width: 80%;
  }
  footer .heading {
    padding: 20px 0;
  }
}
@media screen and (min-width: 767px) {
  .logo {
    width: 200px;
  }
}
@media screen and (min-width: 1050px) {
.modal-title {
  font-size: 30px;
  color: #00142d;
  margin-bottom: 10px;
}
}

@media screen and (min-width: 1050px) {
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
}

.full-image-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.full-image-popup .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.full-image-popup .slider {
  position: relative;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  max-width: 80%;
  height: auto;
}

.full-image-popup .slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-image-popup .slider-img {
  display: none;
  max-width: 100%;
  max-height: 80vh;
  margin: auto;
}

.full-image-popup .prev,
.full-image-popup .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.full-image-popup .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.full-image-popup .prev:hover,
.full-image-popup .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


/* Style the submit button directly */
.wpcf7-submit {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background-color: #000000; /* Adjust as needed */
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: Menco-Medium, sans-serif; /* Matching font family */
  font-weight: 500; /* Ensure font weight is consistent */
  text-transform: uppercase; /* Match text transformation */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
  background-color: #000000; /* Adjust as needed */
  color: #fff;
}

.line-preloader {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c1ecff, #fff, #c1ecff);
  animation: loading-line 2s infinite linear;
}

@keyframes loading-line {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
  display: block;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
}
