
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "Lexend Deca", Helvetica;
}

header {
  align-items: center;
  display: flex; 
  background: #061e28; 
  justify-content: space-between;
  flex-direction: row;
  padding: 1rem 3rem;
}

main {
  background: #ffffff;
  font-family: "Lexend Deca", Helvetica;
  margin: 3rem;
}

.logo {
  width: 12rem;
}

.demoBanner {
  background: #F4443C;
  color: #ffffff;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
}

.navbar {
  align-items: center;
  display: flex;
  gap: 0;
}

nav a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

.navbar a.active {
  color: #ffffff;
  font-weight: 700;
  position: relative;
  background: linear-gradient(335deg, rgba(2, 12, 16, 0.75) 50%, rgba(1, 181, 198, 0.75) 100%);
  box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.65);
  border-bottom: 2px solid #00e9ff;
  border-radius: 4px 0 0 0;
}

.navbar a:hover:not(.active) {
  background: linear-gradient(180deg, rgba(2, 12, 16, 0.75) 80%, rgba(1, 181, 198, 0.75) 100%);
  box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.65);
  color: #00e9ff;
}

.navbar a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: #00e9ff;
  filter: blur(4px);
  opacity: 0.7;
}

.multiButton {
  background: linear-gradient(90deg, rgba(255, 190, 56, 1) 10%, rgba(244, 68, 60, 1) 50%, rgba(156, 51, 117, 1) 90%);
  border-radius: 24px;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer; 
  white-space: nowrap;
  text-decoration: none;
}

.multiButton:hover {
  background: linear-gradient(90deg, rgba(255, 189, 56, 0.7) 20%, rgba(244, 69, 60, 0.7) 50%, rgba(156, 51, 118, 0.7) 80%);
  color: #061e28ac;
}

.homeMultiButton {
  background: linear-gradient(90deg, rgba(255, 190, 56, 1) 10%, rgba(244, 68, 60, 1) 50%, rgba(156, 51, 117, 1) 90%);
  border-radius: 24px;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer; 
  white-space: nowrap;
  width: 100%;
}

.homeMultiButton:hover {
  background: linear-gradient(90deg, rgba(255, 189, 56, 0.7) 20%, rgba(244, 69, 60, 0.7) 50%, rgba(156, 51, 118, 0.7) 80%);
  color: #061e28ac;
}

.rightHeader { 
  display: flex;
  gap: 2rem;
  margin-right: 2rem;
}

#headerCart {
  width: 3rem;
  height: 3rem;
}

.cartIconContainer {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.cartIconMain {
  width: 2.5rem;
  height: 2.5em;
  display: block;
}

.cartBadge {
  position: absolute;
  top: -7px;
  right: -4px;
  background-color: #F4443C;
  color: #ffffff !important; 
  font-size: 0.8rem;
  font-weight: 700;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid #061e28;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  padding: 0;
  overflow: hidden;
  z-index: 10;   
}

.cartBadge.show {
  display: flex;
}

footer {
  background: #061e28;
  padding-top: 3rem;
}

.footerLinks {
  display: flex;
  padding: 0 3rem;
}

.footerSection1 {
  display: flex;
  flex-direction: column;
  color: #b1b5b9;
  width: 40%;
}

.footerSection1 p {
  width: 60%;
}

.footerSection2, .footerSection3, .footerSection4 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 20%;
}

.footerLinks h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
}

.footerLinks h2 {
  color: #b1b5b9;
  font-size: 1rem;
  font-weight: 400;
}

.socialIcons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  width: 1rem;
}

.footerForm {
  margin-top: 3rem;
  padding-bottom: 2rem;
  background: linear-gradient(180deg, rgba(6, 30, 40, 1) 3%, rgba(0, 134, 149, 1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footerForm h3 {
  color: #ffffff;
  font-family: "Lexend Deca", Helvetica;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.footerForm p {
  color: #b1b5b9;
}

.footerForm input {
  background: #e4eff5;
  height: 3rem;
  width: 25rem;
  color: #b1b5b9;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  margin-right: 2rem;
}

.copyrightSection {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: #061e28;
  color: #b1b5b9;
  font-size: 1rem;
  width: 100%;
  padding: 1rem 3rem;
}

.legalLinks {
  display: flex;
  gap: 1rem;
}

.heroSection {
  background: #061e28;
}

.heroTitle {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 2rem;
}

.magicContainer {
  position: relative;
  display: inline-block;
}

#magicBase {
  top: 0;
  left: 0;
  height: 6rem;
}

#magicOverlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 6rem;
  animation: magic-fade 2s ease-in-out infinite;
}

@keyframes magic-fade {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1; 
  }
}

.heroBody {
  display: flex;
  gap: 3rem;
}

.heroContent {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 50%;
  margin-left: 3rem;
}

#heroDescription {
  color: #ffffff;
  font-size: 1.25rem;
}

.heroButtonContainer {
  display: flex;
  height: fit-content;
  gap: 1.5rem;
  margin-top: 3rem;
}

.heroButton {
  width: 50%;
}

#heroImageContainer {
  width: 50%;
}

.inputSearch {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: #b1b5b9 1px solid;
  border-radius: 24px;
  padding: 1rem 2rem;
  width: 100%;
}

.inputSearch input {
  background: transparent;
  border: none;
  font-size: 1rem;
  color: #b1b5b9;
  width: 100%;
}

.styleTagContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.styleTag {
  background: transparent;
  border: #008695 1px solid;
  width: fit-content;
  border-radius: 24px;
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
  color: #b1b5b9;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s ease;
}

.styleTag:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.sectionHeading {
  color: #061e28;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin: 3rem;
}

#featuredPacksContainer {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.packCard {
  display: flex;
  flex-direction: column;
  border: #b1b5b9 1px solid;
  border-radius: 8px;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  max-width: 350px;
  background: #e4eff5;
  margin: 0 auto;
}

.cardContent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #e4eff5;
  border: none;
  min-height: 200px;
}

.cardImageContainer {
  line-height: 0;    
  font-size: 0;     
  overflow: hidden; 
  background: transparent; 
  border: none;          
  outline: none;
  margin: -1rem;
}

#cardImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  outline: none;
}

.cardLine1 {
  display: flex;
  justify-content: space-between;
}

.cardPrice {
  color: #008695;
  font-size: 1.5rem;
  font-weight: 600;
}

.cardTags {
  display: flex;
  gap: 0.2rem;
}

.cardTag {
  background: transparent;
  border: #008695 1px solid;
  width: fit-content;
  border-radius: 24px;
  padding: 0.3rem 0.5rem;
  font-size: 0.7rem;
  color: #008695;
  align-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cardTag:hover {
  background-color: #008695;
  color: #ffffff !important;
  border-color: #008695;
}

.promptCount {
  color: #008695;
  font-size: 0.875rem;
}

.cardMoreInfo {
  background: #008695;
  color: #ffffff;
  font-size: 0.875rem;
  border: none;
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  width: fit-content;
  text-decoration: none;
}

.cardLastLine {
  display: flex;
  justify-content: space-between;
  align-items: baseline  ;
}

.cardTitle {
  color: #061e28;
  font-size: 1.25rem;
  font-weight: 600;
}

.cardDescription {
  color: #061e28;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 4.5em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cardButtonIcon {
  width: 1rem;
  height: 1rem;
}

.cardButton {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
} 

#trustSection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  align-items: center;
  padding: 2rem;
  background: #e4eff5;
  justify-content: center;
}

.trustBadge {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: auto;
  border: #008695 1px solid;
  border-radius: 8px;
  padding: 1rem 2rem;
  background: #ffffff;
  text-align: center;
  height: 100%;
}

.trustIcon {
  width: 2rem;
  height: 2rem;
}

.trustTitle {
  color: #061e28;
  font-size: 1.25rem;
  font-weight: 600;
}

.trustDescription {
  color: #061e28;
  font-size: 1rem;
}

#whySection {
  background: #008695;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 3rem 2rem;
  border-radius: 24px;
}

#whyHeading {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
}

.whyContent {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
  place-items: center;
}

.whyTitle {
  color: #ffbe38;
  font-size: 1.5rem;
  font-weight: 600;
}

.whyPoint {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  max-width: 15rem;
  text-align: center;
  align-content: center;
}

.whyDescription {
  color: #ffffff;
  font-size: 1rem;
}

.whyIcon {
  width: 3rem;
  height: 3rem;
}

#featuredSection {
  margin: 3rem auto;
}

.aboutHeroContent {
  background-image: url("../assets/images/aboutHeroBackground.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#teamImage {
  width: 90%;
  height: auto;
  align-self: center;
}

#aboutTitle1 {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 600;
  align-self: center;
  margin-top: 2rem;
}

#aboutTitle2 {
  color: #ffbe38;
  font-size: 4rem;
  font-weight: 600;
  align-self: center;
}

#aboutSubtitle {
  color: #ffffff;
  font-size: 1.25rem;
  align-self: center;
  text-align: center;
}

.blueContainer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem auto;
  width: 100%;
  border-radius: 24px;
  border: #008695 1px solid;
  padding: 3rem;
  max-width: 1200px;
  background: #e4eff5;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.4);
  align-self: center;
  justify-content: center;
}

.blueContainer a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  width: 100%; 
}

.blueContainerHeader {
  display: flex;
  justify-content: left;
  gap: 1rem;
  color: #008695;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.blueContainer p {
  color: #061e28;
  font-size: 1.25rem;
  text-align: left;
}

.blueContainerHeaderIcon {
  width: 2rem;
  height: 2rem;
  align-self: center;
}

.whoPointContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 2rem;
}

.whoPoints h3 {
  color: #061e28;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
}

.whoPoints {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
}

#whoPoint1, #whoPoint5 {
  border-left: #ffbe38 4px solid;
}

#whoPoint2 {
  border-left: #9C3375 4px solid;
}

#whoPoint3 {
  border-left: #F4443C 4px solid;
}

#whoPoint4 {
  border-left: #008695 4px solid;
}

.whatContainer {
  display: flex;
  gap: 2rem;
} 

.whatItemContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.whatItem {
  display: flex;
  gap: 1rem;
  align-items: top;
  text-align: left;
}

.flashIcon {
  width: 3.5rem;
  height: 3.5rem;
}

.whatText {
  color: #061e28;
  font-size: 1.25rem;
}

.whatText h3 {
  color: #061e28;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

#philosophySection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 3rem auto;
  max-width: 1200px;
  text-align: left;
}

.philosophyPointContainer {
  display: flex;
  background: #e4eff5;
  gap: 2rem;
  padding: 1rem;
  border-radius: 8px;
  align-items: center;
}

.arrow {
  border: solid #008695;
  border-width: 0 3px 3px 0; 
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

#philosophyHeader {
  color: #008695;
  font-size: 3rem;
  font-weight: 600;
  text-align: left;
}

#readyCTA {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin: 3rem auto;
}

#readyCTA h2 {
  color: #061e28;
  font-size: 3rem;
  font-weight: 600;
}

.libraryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 3rem 2rem; 
  max-width: 1250px; 
  margin: 3rem auto;
  padding: 0 1rem;
}

.productDetailsContainer {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1200px;
  margin: 3rem auto;
  color: #061e28;
  justify-content: center;
}

.productImageContainer {
  display: flex;
  flex-direction: column;
  width: 45%;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: #e4eff5;
  border: #008695 1px solid;
}

#mainProdImg {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  aspect-ratio: 3 / 2;
}

.thumbnailGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.thumbnailImg {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.thumbnailImg:hover {
  border-color: #008695; 
}

.ratings {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.starRating {
  display: flex;
  gap: 4px;
}

.ratingStar {
  display: flex;
  gap: 4px;
  height: 1.5rem;
}

.packPurchaseContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  background: #008695;
  color: #ffffff;
  border-radius: 24px;
  padding: 2rem;
}

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

.packPrice {
  color: #ffbe38;
  font-size: 3rem;
  font-weight: 600;
}

.purchaseCartIcon {
  width: 1.5rem;
  height: 1.5rem;
}

.whiteButton {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #061e28;
  font-size: 1.25rem;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
}

.packDetailsContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #061e28;
  background: #e4eff5;
  border: #008695 1px solid;
  padding: 2rem;
  border-radius: 24px;
}

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

.productInfo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 2rem;
  gap: 1rem;
  width: 50%;
}

.productHeading {
  color: #061e28;
  font-size: 2.5rem;
  font-weight: 600;
}

.includedPromptsContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: #008695 1px solid;
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto;
}

.includedPromptsContainer h3 {
  color: #008695;
  font-size: 2rem;
  font-weight: 600;
}

.promptItemContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e4eff5;
  border: #008695 1px solid;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.promptItemContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e4eff5;
  border: #008695 1px solid;
  border-radius: 8px;
  padding: 1rem;
}

.unlimitedCTAContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  background: #008695;
  color: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  max-width: 1200px;
  margin: 3rem auto;
}

.accountHeading {
  color: #061e28;
  font-size: 3rem;
  font-weight: 600;
  text-align: left;
}

.account h3 {
  font-size: 2rem;
  font-weight: 600;
}

.manageSubscriptionContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #008695;
  color: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  margin: 3rem auto;
}

.account {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.accountSummaryContainer {
  display: flex;
  justify-content: space-between;
  margin: 3rem auto;
}

.accountStatContainer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #e4eff5;
  border: #008695 1px solid;
  border-radius: 8px;
  padding: 2rem;
  width: 30%;
}

.accountStatContainer h3 {
  color: #061e28;
  font-size: 1.6rem;
  font-weight: 600;
}

.accountStatContainer p {
  color: #008695;
  font-size: 1.6rem;
  font-weight: 600;
}

.purchasedPacksContainer {
  border: #008695 1px solid;
  border-radius: 24px;
  padding: 3rem;
}

.accountSettingsContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #e4eff5;
  border: #008695 1px solid;
  border-radius: 24px;
  padding: 3rem;
  margin-top: 3rem;
  margin-bottom: 8rem;
}

.purchasedCardContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.cardContent {
  height: 50%;
}

.purchasedPacksContainer h2 {
  color: #061e28;
  font-size: 2rem;
  font-weight: 600;
}

.settingsRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: #008695 1px solid;
}

#accountSettingsHeading {
  color: #061e28;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.settingsRow h2 {
  text-align: left;
}

.settingsRow p {
  text-align: left;
}

.editButton {
  background: #ffffff;
  color: #008695;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
}

#contactTop {
  display: flex;
  gap: 3rem;
  justify-content: center;
  max-width: 1200px;
  margin: 3rem auto;
}

#contactSubheading {
  color: #061e28;
  font-size: 1.25rem;
  text-align: center;
  margin-top: -2rem;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  background: #008695;
  color: #ffffff;
  border-radius: 24px;
  padding: 3rem;
}

#contactFormHeading {
  display: flex;
  align-items: left;
  gap: 1rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.5rem;
}

.contactForm input, .contactForm textarea {
  background: #e4eff5;
  border: none;
  border-radius: 8px;
  padding: 1rem 1rem;
  font-size: 1rem;
  color: #061e28;
}

.contactFormMessage {
  margin-top: 3rem;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border: #008695 1px solid;
  border-radius: 24px;
  padding: 3rem;
  text-align: left;
}

.contactInfo h2 {
  color: #008695;
  font-size: 2.5rem;
  font-weight: 600;
}

.contactInfoHeader {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contactTopRight  {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.supportContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: #e4eff5;
  border: #008695 1px solid;
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
}

.supportContainer h2 {
  color: #008695;
  font-size: 2.5rem;
  font-weight: 600;
}

.viewPlansButton {
  background: #008695;
  color: #ffffff;
  font-size: 1.25rem;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  align-self: center;
}

#faqHeading {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #008695;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

#faqContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 3rem auto;
  max-width: 1200px;
  text-align: left;
}

.faqItem {
  border: 1px solid #008695;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: #e4eff5;
  overflow: hidden; /* Clips the answer when closed */
  transition: all 0.3s ease;
}

.faqHeader {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faqHeader h3 {
  font-size: 1.1rem;
  color: #061e28;
  margin: 0;
}

.faqAnswer {
  max-height: 0; /* Hidden by default */
  padding: 0 1.5rem;
  transition: all 0.4s cubic-bezier(0, 1, 0.5, 1);
  background: #ffffff;
}

.faqAnswer p {
  padding: 1rem 0 1.5rem 0;
  color: #4a5568;
  line-height: 1.6;
}

/* Active State Styles */
.faqItem.active {
  border-color: #ffbe38; /* Highlight the border when open */
}

.faqItem.active .faqAnswer {
  max-height: 200px; /* Big enough to show content */
}

.faqItem.active .arrow {
  transform: rotate(-135deg); /* Flips arrow up */
  margin-top: 6px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#questionIcon {
  width: 3rem;
  height: 3rem;
}

#refundPolicyContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #e4eff5;
  border: #008695 1px solid;
  border-radius: 24px;
  padding: 3rem;
  max-width: 1200px;
  margin: 3rem auto;
}

#refundPolicyContainer h2 {
  color: #008695;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

#refundPolicyContainer h3 {
  margin-bottom: -0.7rem;
}

.plansContainer {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.bluePlanCard, .whitePlanCard {
  width: 380px;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.whitePlanCard {
  min-height: 620px; 
  position: relative; 
  border: #008695 1px solid;
  border-radius: 24px;
  padding: 3rem;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 134, 149, 0.2);
  z-index: 2;
}

.bluePlanCard {
  background: #008695;
  color: #ffffff;
  border-radius: 24px;
  padding: 3rem;
}

.whitePlanCard h2 {
  color: #008695;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: -1rem;
}

.bluePlanCard h2 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
}

.planPrice {
  font-size: 4rem;
  font-weight: 700;
  color: inherit; 
  margin-top: 1rem;
}

.customBullets1, .customBullets2, .customDownloadBullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.customBullets1 li {
  display: flex;        
  align-items: flex-start; 
  gap: 1rem;            
  text-align: left;
}

.customDownloadBullets li {
  display: flex;        
  align-items: flex-start; 
  gap: 1rem;            
  text-align: left;
}

.customBullets1 li::before {
  content: "✓";
  color: #ffbe38;
  font-weight: 700;
  flex-shrink: 0;
}

.customBullets2 li {
  display: flex;        
  align-items: flex-start; 
  gap: 1rem;            
  text-align: left;
}

.customBullets2 li::before {
  content: "✓";
  color: #008695; 
  font-weight: 700;
  flex-shrink: 0;       
}

.customDownloadBullets li::before {
  content: url(../assets/images/downloadIcon.svg);
  color: #061e28;
  font-weight: 700;
  flex-shrink: 0;
}

.plansHeader {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.plansHeader h2 {
  margin-top: 2rem;
  color: #061e28;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}


.plansHeader h1 {
  font-size: 3rem;
}

.plansSection {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
}

.mostPopularContainer {
  position: absolute;
  top: -20px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
  background: #008695;
  color: #ffffff;
  border-radius: 24px;
  padding: 0.5rem 1rem;
  width: max-content;
  z-index: 10;
}

.priceContainer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}



.bluePlanCard .planPrice {
  color: #ffbe38;
}

.whitePlanCard .planPrice {
  color: #008695;
}

.greenButton {
  background: #008695;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  align-self: center;
  width: 100%;
}

#individualPacks {
  text-align: center;
}

#individualPacksHeading {
  color: #061e28;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

#includedContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: #008695 1px solid;
  border-radius: 24px;
  padding: 3rem;
  max-width: 1200px;
  margin: 3rem auto;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.4);
 
}

#includedContainer h2 {
  color: #008695;
  font-size: 2.5rem;
  font-weight: 600;
}

#includedChart {
  width: 100%;
  height: auto;
}

.tableContainer {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparisonTable {
  width: 100%;
  border-collapse: collapse;
}

.comparisonTable thead th {
  padding: 1rem;
  text-align: center;
  color: #061e28;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: #008695 2px solid;
}

.comparisonTable thead th:first-child {
  text-align: left;
}

.comparisonTable td {
  padding: 1rem 1.5rem;
  text-align: center;
  color: #061e28;
  font-size: 1rem;
}

.comparisonTable td:first-child {
  text-align: left;
  font-weight: 600;
}

.comparisonTable tbody tr:nth-child(odd) {
  background-color: transparent;
}

.comparisonTable tbody tr:nth-child(even) {
  background-color: #e4eff5; 
}

.comparison-table td.check {
  color: #008695;
  font-weight: 600;
  font-size: 1rem;
}

.faqSection2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 3rem auto;
  max-width: 1200px;
}

.faqContainer2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faqItem2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #008695;
  color: #ffffff;  
  border-radius: 8px;
  padding: 2rem;
  align-items: left;
}

.faqItem2 h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
}

.faqItem2 p {
  color: #ffffff;
  font-size: 1rem;
  margin-top: 1rem;
  text-align: left;
}

.faqSection2 h2 {
  color: #061e28;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

.subscriptionContainer {
  display: flex;
  max-width: 1200px;
  margin: 3rem auto;
}

.summaryContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: #008695 1px solid;
  border-radius: 24px;
  padding: 3rem;
  width: 50%;
}

.summaryContainer h2 {
  color: #008695;
  font-size: 2.3rem;
  font-weight: 600;
}

.orderPlan {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #e4eff5;
  color: #061e28;
  border: #008695 1px solid;
  border-radius: 24px;
  padding: 2rem 1rem 1rem 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

#cartItemsList {
  margin-top: 2rem;
}

#planPrice {
  color: #061e28;
  font-size: 3rem;
  font-weight: 600;
}

.planPriceContainer {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.orderDetails h3 {
  text-align: left;
}

.priceBreakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: #008695 1px solid;
  border-bottom: #008695 1px solid;
  padding: 1rem 0;
  text-align: left;
}

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

.totalContainer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px;
  font-weight: 600;
  margin-bottom: 2rem;
}

#guaranteeContainer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  background: #e4eff5;
  border: #008695 1px solid;
  border-radius: 24px;
  padding: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  text-align: center;
  width: 100%;
}

#guaranteeContainer h3 {
  color: #008695;
  font-size: 1.5rem;
  font-weight: 600;
}

#checkoutFormHeading {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: left;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.checkoutForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #e4eff5;
  color: #061e28;
  border-radius: 24px;
  padding: 3rem;
  max-width: 1200px;
}

.subscriptionFormContainer {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto;
  align-items: stretch; 
}

.summaryContainer, .checkoutForm {
  flex: 1; 
  display: flex;
  flex-direction: column;
  padding: 3rem;
  border: 1px solid #008695;
  border-radius: 24px;
  text-align: left;
}

#guaranteeContainer, 
.secureCheckoutNote {
  margin-top: auto; 
}

#saveTag { 
  background: #008695; 
  color: white; 
  border-radius: 20px; 
  padding: 0.5rem 1rem; 
  width: fit-content; 
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.inputGroup { 
  margin-bottom: 3rem; 
  display: flex; 
  flex-direction: column; 
}

.inputGroup label { 
  font-weight: 600; 
  margin-bottom: 0.5rem; 
  color: #008695; 
  font-size: 1rem; 
}

input[type="text"], input[type="email"], input[type="password"], input[type="name"] {
  padding: 1rem;
  border: 1px solid #008695;
  border-radius: 8px;
}

.topInput { 
  border-bottom: none; 
  border-radius: 8px 8px 0 0; 
}

.splitInput { 
  display: flex; 
}

.bottomLeft { 
  flex: 2; 
  border-radius: 0 0 0 8px; 
  border-right: none; 
}

.bottomRight { 
  flex: 1; 
  border-radius: 0 0 8px 0; 
}

.bottomFull { 
  border-top: none; 
  border-radius: 0 0 8px 8px; 
}
.termsContainer { 
  display: flex; 
  gap: 1rem; 
  align-items: flex-start; 
  margin: 2rem 0; 
  font-size: 1rem; 
}

.subscribeBtn { 
  width: 100%; 
  height: 4rem; 
  font-size: 1.25rem; 
  cursor: pointer; 
}

.secureCheckoutNote {
  display: flex; 
  justify-content: center; 
  align-items: center;
  gap: 1rem; 
  margin-top: auto; 
  color: #008695; 
  font-size: 1rem;
  padding-top: 2rem;
}

.productSummary {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #008695;
  transition: opacity 0.3s ease;
}

.productSummary:last-of-type {
  border-bottom: none;
}

.removeItem {
    background: none;
    border: none;
    color: #a0aec0; /* Soft grey */
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
    transition: color 0.2s ease;
}

.removeItem:hover {
    color: #e53e3e; /* Red on hover */
}

#downloadMessage {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #061e28;
  justify-content: center;
  background: #b1b5b9;
  border-radius: 8px;
  padding: 0.5rem;
}

.signInContainer, .joinContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding: 3rem;
  max-width: 1200px;
  margin: 1rem auto;
}

.signInForm, .joinForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #008695;
  color: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 600px;
  height: auto;
}

.signInJoinToggle {
  display: flex;
  gap: 8px;
  background: #e4eff5;
  width: 100%;
  border-radius: 9px;
  padding: 0.4rem;
  justify-content: center;
  text-align: center;
}

.activeToggle {
  background: #ffffff;
  color: #061e28;
  border-radius: 8px;
  padding: 0.5rem 0.5rem;
  align-content: center;
  width: 50%;
}

.inactiveToggle {
  color: #b1b5b9;
  padding: 0.5rem 0.5rem;
  align-content: center;
  width: 50%;
  text-decoration: none;
}

.goldButton {
  background: #ffbe38;
  color: #061e28;
  font-weight: 700;
  font-size: 1.25rem;
  border: none;
  border-radius: 8px;
  align-self: center;
  width: 100%;
  padding: 0.75rem 0;
}

.rememberMeContainer {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rememberForgot {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.socialButton {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background: #061e28;
  color: #ffffff;
  font-size: 1.5rem;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  width: 50%;
}

.socialButtonContainer {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.continueLine {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  margin-top: 1rem;
}

.line {
  flex: 1;
  height: 1px;
  background: #ffffff;
}

.agreeContainer {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: left;
  margin: 1rem;
}

#freePackContainer {
  width: 600px;
  text-align: left;
}

.joinInputGroup, .signInInputGroup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.joinInputGroup label {
  font-weight: 400;
  color: #ffffff;
  font-size: 1rem;
  text-align: left;
}

.signInInputGroup label {
  font-weight: 400;
  color: #ffffff;
  font-size: 1rem;
  text-align: left;
}

.homeInputSearch {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: #b1b5b9 1px solid;
  border-radius: 24px;
  padding: 0.5rem 1rem;
  width: 100%;
}

.homeInputSearch input {
  border: none;
  width: 100%;
  font-size: 1.25rem;
  background: transparent;
  color: #ffffff;
  outline: none;
}

.homeInputSearch:focus-within {
  border-color: #00e9ff;
  box-shadow: 0 0 8px rgba(0, 233, 255, 0.3);
}

.searchSortContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1250px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
  gap: 2rem;
}

.searchWrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: #b1b5b9 1px solid;
  border-radius: 24px;
  padding: 0.8rem 1.5rem;
  flex: 2;
  background: #ffffff;
}

.searchWrapper input {
  border: none;
  width: 100%;
  font-size: 1rem;
  outline: none;
}

.sortWrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

#sortPacks {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #008695;
  background: #ffffff;
  cursor: pointer;
}

.v2-note {
  text-align: center;
  color: #b1b5b9;
  margin: 4rem 0;
  font-style: italic;
}

/* --- Animation Keyframes --- */
@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* The class we will trigger with JS */
.fadeIn {
  animation: fadeInCard 0.4s ease-out forwards;
}

#noResultsMessage {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  gap: 1.5rem;
  color: #061e28;
  width: 100%;
}

.noResultsIcon {
  width: 4rem;
  opacity: 0.3;
  filter: grayscale(1);
}

#noResultsMessage h2 {
  font-size: 2rem;
  font-weight: 600;
}

#noResultsMessage p {
  color: #b1b5b9;
  max-width: 400px;
}

.successMain {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: radial-gradient(circle at top right, #061e28, #008695);
    padding: 2rem;
}

.successCard {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.3);
}

.successCard.subscriptionSuccess {
    border: 3px solid #ffbe38; 
}

.successIconContainer {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #008695, #00e9ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 20px rgba(0, 134, 149, 0.4);
}

.successIconContainer img {
    width: 50px;
    filter: brightness(0) invert(1);
}

.successCard h1 {
    color: #061e28;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.successCard p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

.successActions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.secondaryBtn {
    background: transparent;
    border: 2px solid #008695;
    color: #008695;
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondaryBtn:hover {
    background: #e4eff5;
}

.nextSteps {
    text-align: left;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step span {
    background: #008695;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.successActions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.secondaryLink {
    color: #008695;
    text-decoration: none;
    font-size: 0.9rem;
}

.planLink {
  text-decoration: none;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: auto; 
}

.planBtn {
  width: 100%; 
  max-width: 250px;
}

/* Modal Container */
.modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modalCard {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Success State Override */
.modalCard.successState {
    background: #008695;
    color: #ffffff;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.modalCard h1 {
    font-size: 1.8rem;
    color: #061e28;
    margin-bottom: 1rem;
}

.successState h1 {
    color: #ffffff;
    font-size: 2.5rem;
}

.closeBtn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #b1b5b9;
}

.modalIconContainer {
    background: #ffbe38;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.modalFeatures {
    background: #e4eff5;
    border: 1px solid #008695;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    list-style: none;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.modalFeatures li::before {
    content: "✓ ";
    color: #008695;
    font-weight: bold;
}

.modalInputGroup {
    text-align: left;
    margin-bottom: 1rem;
}

.modalInputGroup label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modalInputGroup input {
    width: 100%;
    padding: 0.8rem;
    border: 1.5px solid #008695;
    border-radius: 8px;
}

.modalInputGroup img {
    width: 20px;
    right: 1rem;
    top: 50%;
    transform: translateY(20%);
  }

.modalSubmitBtn {
    width: 100%;
    margin: 1.5rem 0;
    height: 3.5rem;
    align-content: center;
}

.footerLinks h2:hover {
    color: #00e9ff; /* The iMagica Neon Blue */
    padding-left: 5px; /* Subtle "nudge" effect */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* --- Hide Mobile UI by default --- */
.mobileHeader, .mobileNav, #mobileHeroImage, #mobileImageContainer, .mobileProductDetailsContainer {
  display: none;
}

@media (min-width: 850px) and (max-width: 1150px) {

  .packCard {
    max-width: 100%; 
  }

  .libraryGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .productDetailsContainer {
    flex-direction: column;
    margin: 1rem auto;
    padding: 0 1rem;
  }

  .productImageContainer, .productInfo {
    width: 100%;
    margin-left: 0;
  }
  
  .includedPromptsContainer h3 {
    text-align: center;
    font-size: 1.5rem;
  }

  .thumbnailGrid {
    display: flex;
    justify-content: space-between;
  }

  .thumbnailImg {
    width: 30%;
    height: auto;
    object-fit: cover;
  }

}

@media (max-width: 849px) {
  header, footer, #heroImageContainer { 
    display: none;
  }

  main {
    padding: 0;
    margin: 1rem;
  }

  .mobileHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    background: #061e28;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .mobileLogo { 
    width: 10rem; 
  }
  
  .mobileHeaderIcons { 
    display: flex; 
    align-items: center; 
  }

  .cartWrapper { 
    position: relative; 
  }

  /* --- Bottom Nav (The Cylinder Look) --- */
  .mobileNav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #061e28;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 6rem;
    border-top: 1px solid rgba(0, 233, 255, 0.1);
  }

  .navItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    text-decoration: none;
    color: #008695;
  }

  .navItem img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .navItem.active {
    background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,233,255,0.1) 50%, rgba(0,0,0,0.4) 100%);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.8);
    position: relative;
    color: #00e9ff;
  }

  .navItem.active::before, .navItem.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1.5px;
    background: #00e9ff;
    filter: blur(2px);
  }

  .navItem.active::before { 
    top: 0; 
  }

  .navItem.active::after { 
    bottom: 0; 
  }

  .navItem span { 
    font-size: 1rem; 
    margin-top: 4px; 
  }

  .mobileTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .heroTitle {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 28px;
    text-align: center;
  }

  .magicContainer {
    align-self: center;
  }

  #mobileHeroImage {
    display: block;
    object-fit: cover;
    margin-bottom: 0;
    align-content: left;
  }

  #mobileHeroImage img {
    width: 90%;
    height: auto;
    margin-left: 20px;
    margin-bottom: -3rem;
  }

  .heroContent {
  gap: 2rem;
  width: 100%;
  margin: 0 2rem 2rem 2rem;
  }

  .mobileHeroButtons{
    margin-top: 0;
  }


  #whySection {
    margin-bottom: 8rem;
  }

  .plansContainer {
    flex-wrap: wrap;
  }

  .bluePlanCard, .whitePlanCard {
    width: 100%;
    max-width: 500px;
  }

  .whitePlanCard {
    transform: scale(1); 
    margin: 1rem 0;
  }

  #aboutTitle1, #aboutTitle2 {
    font-size: 2rem;
  }

  .aboutHeroContent p {
    margin: 0 1rem;
  }

  .aboutHeroContent {
    min-height: 500px;
  }

  #philosophySection {
    margin-bottom: 2rem;
  }

  #readyCTA {
    margin: 0 auto 8rem auto;
    text-align: center;
  }

  #readyCTA p {
    margin: 0 auto;
  }

  .whatItemContainer {
    grid-template-columns: 1fr;
  }
 
  .comparisonTable thead th {
    font-size: 16px;
    padding: 12px;
  }

  .comparisonTable td {
    font-size: 14px;
    padding: 10px 12px;
  }

  .faqSection2 {
    margin: 0 auto 8rem auto;
  }

  #contactTop {
    flex-direction: column;
    gap: 2rem;
  }

  .contactForm {
    width: 100%;
  }

  #faqContainer {
    margin-bottom: 0;
  }

  #refundPolicyContainer {
    width: 100%;
    margin-bottom: 6rem;
    margin-top: 1rem;
    padding: 2rem;
  }

  .supportContainer {
    margin-top: 2rem;
  }

  #accountMain {
    width: 90%;
    margin: 1rem auto 8rem auto;
  }

  .accountStatContainer h3 {
    font-size: 20px;
  }

  .accountStatContainer p {
    font-size: 20px;
  }

  .purchasedPacksContainer h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .purchasedCardContainer {
    grid-template-columns: 1fr;
  }

  #freePackContainer {
    width: 100%;
    margin-bottom: 4rem;
  }

  .libraryGrid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
  }

  .includedPromptsContainer {
    padding: 2rem;
  }

  .includedPromptsContainer p {
    text-align: left;
    margin-right: 3rem;
  }

  .unlimitedCTAContainer {
    padding: 2rem;
    margin-bottom: 7rem;
  }

  .mobileProductDetailsContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem auto;
  }

  .subscriptionFormContainer {
    flex-direction: column;
    gap: 2rem;
    font-size: larger;
  }

  .summaryContainer, .checkoutForm {
    width: 100%;
    align-self: center;
  }

  .checkoutForm {
    margin-bottom: 7rem;
  }

  .inputGroup {
    margin-bottom: 2rem;
  }

  .inputGroup label {
    font-size: 1rem;
  }

  .searchSortContainer {
    flex-direction: column;
    gap: 1rem;
  }
  .searchWrapper, .sortWrapper { 
    width: 100%; 
    justify-content: center; 
  }

  .productDetailsContainer {
    flex-direction: column;
    margin: 1rem auto;
    padding: 0 1rem;
  }

  .productImageContainer, .productInfo {
    width: 100%;
    margin-left: 0;
  }

  #mainProdImg {
    height: 300px;
  }

  .thumbnailGrid {
    display: flex;
    justify-content: space-between;
  }

  .thumbnailImg {
    width: 30%;
    height: auto;
  }
  
  .includedPromptsContainer h3 {
    text-align: center;
    font-size: 1.5rem;
  }

  .accountSummaryContainer {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .accountStatContainer {
    min-width: 100%;
    text-align: center;
  }

  .heroBody {
    margin: 0;
  }


}