* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.pageWrapper {
  flex: 1 0 auto;
}

@font-face {
  font-family: "EkMukta-light";
  src: url(images/EkMukta-Light.ttf);
}

@font-face {
  font-family: "BankGothic-MD";
  src: url(images/BankGothic\ Md\ BT.ttf);
}

@font-face {
  font-family: "Toledo2";
  src: url(images/Toledo-Regular\ Regular.otf);
}

@font-face {
  font-family: "EkMukta";
  src: url(images/EkMukta-Bold.ttf);
}

@font-face {
  font-family: "Forum";
  src: url(images/Forum-Regular.ttf);
}

/* ===================================== */
/* PAGE BACKGROUNDS / TITLES / IMAGE WRAPPERS */
/* ===================================== */

.bodyBackground {
  background-image: url(images/skyBG.png);
  background-size: cover;
  background-attachment: fixed!important;
}

.titleImage {
  background-image: url(images/websiteTitle.png);
  width: 1000px;
  aspect-ratio: 10 / 1.5;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  display: block;
  margin-bottom: 70px;
}

.noisyText {
  background-image: linear-gradient(
    to bottom,
    rgba(255, 200, 150, 0.75),
    rgba(255, 160, 60, 0.65)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 0 rgba(255, 200, 150, 0.75),
  -1px -1px 0 rgba(255, 160, 60, 0.65);
}

@media (max-width: 768px) {
  .titleImage {
  background-image: url(images/websiteTitle3.png);
  background-position: top center;
  background-size: cover;
  aspect-ratio: 4 / 3 ;
  margin: 0 auto;
    padding-top: 0;
    margin-top: -1rem;
  
}
}

@media (max-width: 480px) {
  .titleImage {
  width: 75%;
}
}

@media (min-width: 481px) and (max-width: 767px) {
  .titleImage {
    width: 85%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .titleImage {
    width: 80%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .titleImage {
  width: 90%;
}
}

@media (max-width: 812px) and (orientation: landscape) {
  .titleImage {
    width: 65%;
}
}

/* ===================================== */
/* SIDEBAR */
/* ===================================== */

#menuToggle {
  display: block;
  position: fixed;
  top: 60px;
  left: 50px;
  z-index: 2;
  -webkit-user-select: none;
  user-select: none;
  z-index: 999;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 3;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #ffc48a;
  border-radius: 3px;
  z-index: 2;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #ffc48a;
}
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  height: 100vh;
  overflow: visible;
  padding-top: 200px;
  box-sizing: border-box;
  transform: translateX(-100%);
  transition: transform 0.5s ease;

  padding-right: 200px;
}

#menuToggle input:checked ~ #menu {
  transform: translateX(0);
}

#menu ul {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 80%;
}

#menu ul li {
  font: 24px Toledo2, sans-serif;
  text-align: left;
  padding: 15px 0;
  margin: 1rem 0;
  padding-left: 10px;
}

#menu ul li a {
  text-decoration: none;
  color: #fab678;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;

  padding: 8px 15px;
  display: inline-block;
  font-size: 1.1em;
  letter-spacing: 1px;
  opacity: 1 !important;
}

#menu ul li a:hover {
  color: #fab678;
  text-shadow: 0 0 5px rgb(255, 196, 118), 0 0 2px rgba(255, 145, 0, 0.377);
}

#flameCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

#menu ul li.active a {
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
    0 0 10px rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  #menuToggle {
    top: 80px; 
    left: 25px;
  }

  #flameCanvas {
    opacity: .87;
  }

  #menu {
    padding-top: 120px; /* move text higher on screen */
    padding-right: 50px; /* allow more room for text */
  }

  #menu ul li a {
    line-height: 1.2;         
    display: inline-block;    
    padding: 8px 125px 0px 15px;        
  }
}

@media (max-width: 850px) and (orientation: landscape) {
  #menu {
    width: 240px;
    padding-top: 60px;
    padding-right: 30px;
    overflow-y: auto;
    height: 100vh;
    
    position: fixed;
    top: 0;
    left: 0;
    background: transparent; 
    box-sizing: border-box;
    z-index: 2;
  }

  #menuToggle span {
  z-index:6;
  }

  #menu ul li {
    padding: 10px 0;
    margin: 0.5rem 0;
  }

  #menu ul li a {
    font-size: 0.95rem;
    padding: 4px 10px;
    display: inline-block;
    line-height: 1.3;
  }

  #menuToggle {
    top: 50px!important;
    left: 25px!important;
  }

  #flameCanvas {
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    height: auto;
    
    transform-origin: center;
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
  }

  #menu ul {
    padding-left: 10px;
    padding-right: 10px;
  }
}


@media (min-width: 769px) and (max-width: 1024px) {
  #menuToggle {
    top: 115px;
    left: 45px;
  }

  #flameCanvas {
    opacity: .87;
  }
}


/* ===================================== */
/* INDEX PAGE */
/* ===================================== */

#indexFeatured {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 4rem;
  z-index: 1;
  justify-content: center;
}

#featuredImage {
  display: block;
  max-width: 100%;
  z-index: 1;
  width: 30%;
  justify-content: center;
}

#indexFeatured img:hover {
  border: 1px solid #ffc48a;
  animation: sunShimmer 4s ease-in-out infinite;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
  z-index: 1;
}

#featuredInfo {
  text-align: center;
  padding-top: 1rem;
  color: #eaf2f5;
  z-index: 2;
}

#featuredInfo h2 {
  font: 26px BankGothic-MD;
  padding-bottom: 0.5rem;
  text-shadow: 0 0 15px #7ca8d9, 0 0 25px #7ca8d9, 0 0 35px #7ca8d9;
  
}

#featuredIndexButton {
  display: block;
  padding: 0.5em;
  border: 2px solid #77613a;
  background-image: url(images/auh-highListenButton.png);
  background-size: cover;
  width: 200px;
  text-align: center;
  margin: 1rem auto 0 auto;
  font: bold 15px Arial Black;
  text-decoration: none;
  color: white;
  border-radius: 12px;
}

#featuredIndexButton:hover {
  border: 2px solid white;
  
  text-decoration: underline;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.664), 0 0 25px #7ca8d9, 0 0 35px rgba(255, 255, 255, 0.664);
  color: #7ca8d9;
}

#featuredIndexButton a {
  font: bold 15px Arial Black;
  text-decoration: none;
  color: white;
}

#featuredIndexButton a:hover {
  font: italic bold 15px Arial Black;
  text-decoration: underline;
}

#indexAlbum img {
  display: block;
  margin: auto;
  width: 30% !important;
}

#indexAlbum img:hover {
  border: 1px solid #ffc48a;
  animation: sunShimmer 4s ease-in-out infinite;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
  z-index: 1;
}

#indexAlbum {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#albumName {
  text-align: center;
  padding-top: 1rem;
  color: #f86788;
  z-index: 2;
}

#albumName h2 {
  font: 26px EkMukta;
  text-shadow: 0 0 15px white, 0 0 25px white, 0 0 35px white;
  font-weight: 200;
  letter-spacing: 1px;
}

#listenButton {
  display: block;
  padding: 0.5em;
  border: 2px solid #63645e;
  background-image: url(images/albumbgINVERT1.png);
  background-size: cover;
  width: 200px;
  text-align: center;
  margin: 1rem auto 0 auto;
  font: bold 15px Arial Black;
  text-decoration: none;
  color: white;
  box-sizing: border-box;
  border-radius: 12px;
}

#listenButton:hover {
  border: 2px solid #f86788;
  
  text-decoration: underline;
  color: #f86788;
  text-shadow: 0 0 15px #63645e, 0 0 25px #63645e, 0 0 35px #63645e;
}

#listenButton a {
  font: bold 15px Arial Black;
  text-decoration: none;
  color: white;
}

#listenButton a:hover {
  font: italic bold 15px Arial Black #f86788;
  text-decoration: underline;
}

#indexTOUR {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 0;
}

#ticketButton {
  display: flex;
  align-items: center;
  align-items: center;
  padding: 0.5em;
  background-image: url(images/auhtourbg.png);
  background-size: cover;
  background-repeat: repeat;
}

#ticketButton:hover {
  border: 2px solid #aff988;
  padding: 0.5em;
  background-image: url(images/auhtourbg.png);
  background-size: cover;
  background-repeat: repeat;
}

#ticketButton a {
  font: bold 15px Arial Black;
  text-decoration: none;
  color: #aff988;
}

#ticketButton a:hover {
  text-decoration: underline;
  font: italic bold 15px Arial Black;
}

#poster img {
  width: 750px;
  box-shadow: 0 0 20px 15px #37e4af;
}

#poster img:hover {
  border: 3px solid #aff988;
  width: 750px;
}

.indexVideo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 10px;
  flex-direction: column;
}

iframe:hover {
  animation: sunShimmer 4s ease-in-out infinite;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.indexVideoHub {
  justify-content: center;
  align-items: center;
  text-align: center; 
  padding-bottom: 25px;
}

.indexVideoHub h2 {
  color: #fdef73;
  font: bold 45px Toledo2;
}

/*  POLISH / ACCESSIBILITY IMPROVEMENTS */

body {
  margin: 0;
  padding: 0;
  font-family: "EkMukta", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a,
button,
#listenButton,
#ticketButton {
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* MOBILE RESPONSIVENESS */

@media (max-width: 767px) {
  #indexFeatured {
    padding-top: 0;
  }

  #featuredInfo h2,
  #albumName h2 {
    font-size: 20px!important;
  }
}

@media (max-width: 768px) {
  
  #indexAlbum img {
    width: 55% !important;
  }

  #indexFeatured img {
    width: 55% !important;
  }

  #featuredInfo h2,
  #albumName h2 {
    font-size: 28px;
  }

  #albumName {
    width: 90%;
    text-align: center;
    font-size: 18px;
  }

  #listenButton {
    margin-top: 1rem;
  }

  #poster img {
    width: 90%;
    margin: auto;
    display: block;
  }

  #ticketButton {
    width: 85%;
    justify-content: center;
    margin-top: 1rem;
  }

  .indexVideo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 20px;
    text-align: center;
  }

  iframe {
    width: 90vw !important;
    aspect-ratio: 16 / 9;
    height: auto !important;
    max-width: 800px;
    display: block;
    margin: 0 auto;
  }

  #indexTOUR {
    padding: 2rem 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #indexAlbum img,
    #indexFeatured img {
    width: 50% !important;
  }
  #featuredInfo h2,
  #albumName h2 {
    font-size: 24px;
  }
}

/* ===================================== */
/* MUSIC PAGE */
/* ===================================== */
.featuredRelease {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
  font: BankGothic-MD;
  overflow: visible !important;
}

.featuredRelease img {
  width: 90vw;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  margin-bottom: 1.2rem;
  z-index: 3;
  position: relative;
  transition: border 0.2s ease;
}

@media (max-width: 768px) {
  .featuredRelease img {
    width: 85%;
  }
}

.featuredRelease img:hover {
  border: 1px solid #ffc48a;
  animation: sunShimmer 4s ease-in-out infinite;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}
.featuredButton {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5rem 2rem; 
  min-height: 120px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible !important;
}

.featuredText h2 {
  font: bold 1.25rem BankGothic-MD;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 0 5px #7ca8d9, 0 0 15px #7ca8d9, 0 0 25px #7ca8d9;
}

.featuredLink {
  text-decoration: none;
  font: italic bold 1rem Arial Black;
  color: white;
  display: block;
  padding: 0.5em;
  border: 2px solid #77613a;
  background-image: url(images/auh-highListenButton.png);
  background-size: cover;
  width: 200px;
  text-align: center;
  margin: 1rem auto 0 auto;
  font: bold 15px Arial Black;
  text-decoration: none;
  color: white;
  border-radius: 12px;
}

.featuredLink:hover {
  border: 2px solid white;
  text-decoration: underline;
  text-shadow: 0 0 15px #7ca8d9, 0 0 25px #7ca8d9, 0 0 35px #7ca8d9;
}

.featuredButton a:hover {
  text-decoration: underline;
}

.featuredButtonWrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 150px; /* tall */
  margin: 0 -30px; /* center */
  overflow: visible !important;
}

@media (max-width: 768px) {
  .featuredButtonWrapper {
    width: 100% !important;
    margin: 0 auto !important;
    overflow: visible !important;
    height: 150px !important;
  }
}

#cloudCanvas {
  position: absolute;
  top: -15px;
  left: -380px;
  width: 200% !important;
  height: 100% !important;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
  transform: none !important;
  overflow: visible !important;
  transform: translate3d(0,0,0);
}

@media (max-width: 768px) {
  #cloudCanvas {
  left: -5px;
  height: 120% !important;
  width: 100vw !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #cloudCanvas {
  left: -75px;
  width: 100vw !important;
  }
}

@media (max-width: 1080px) and (orientation: landscape) {
  #cloudCanvas {
  width: 100vw !important;  /* balance offset for overrun instead of hardcoded px */
  left: -200px;
  }
}

.albumGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.albumCard {
  text-align: center;
  max-width: 250px;
}

.albumCard img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 1px solid white;
}

.albumCard img:hover {
  border: 1px solid #ffc48a;
  animation: sunShimmer 4s ease-in-out infinite;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

@keyframes sunShimmer {
  0% {
    box-shadow: 0 0 15px 5px #fab678;
    filter: brightness(1.0);
  }
  25% {
    box-shadow: 0 0 25px 10px #fab678;
    filter: brightness(1.0);
  }
  50% {
    box-shadow: 0 0 30px 15px #fab678;
    filter: brightness(1.0);
  }
  75% {
    box-shadow: 0 0 25px 10px #fab678;
    filter: brightness(1.0);
  }
  100% {
    box-shadow: 0 0 15px 5px #fab678;
    filter: brightness(1.0);
  }
}

.albumTitle {
  color: white;
  font: bold 15px Arial Black;
  margin: 0.5rem 0;
  text-shadow: -1px -1px 0 #fab678, 1px -1px 0 #fab678, -1px 1px 0 #fab678,
    1px 1px 0 #fab678;
}

.streamLink {
  text-decoration: none;
  font: bold 10px Arial Black;
  color: white;
  text-shadow: -1px -1px 0 #fab678, 1px -1px 0 #fab678, -1px 1px 0 #fab678,
    1px 1px 0 #fab678;
  border: 2px solid white;
  
  border-radius: 12px;
  padding: 3px 10px;
  background-image: linear-gradient(to top, rgb(255, 209, 149), rgb(255, 175, 100));
  background-size: cover;
    
}

.streamLink:hover {
  text-decoration: underline;  
  transition: filter 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid rgba(250, 244, 244, 0.945);
  text-shadow: 0 0 10px white, 0 0 18px #fab678, 0 0 25px white;
}



/* ===================================== */
/* TOUR PAGE */
/* ===================================== */

.tourTickets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.tourBorder {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 3fr 2fr auto;
  padding: 1rem 2rem;
  border: 2px solid black;
  width: 65%;
  column-gap: 2rem;
}

.tourBorder:hover {
  border: 2px solid #fab678;
  background-image: url(images/footerBG.png);
  background-size: cover;
  color: white;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black,
    1px 1px 0 black;
  animation: sunShimmer 4s ease-in-out infinite;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.tourDates {
  font: italic bold 12px Arial Black;
  padding-right: 2rem;
  flex: 1;
}

.tourVenue {
  font: bold 16px Arial Black;
  padding-right: 2rem;
  flex: 3;
}

.tourLocation {
  font: bold 14px Arial Black;
  flex: 2;
}

.tourLink {
  border: 2px solid black;
  padding: 0.4rem;
  background-color: #fab678;
  flex-shrink: 0;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black,
    1px 1px 0 black;
}

.tourLink:hover {
  border: 2px solid white;
}

.tourLink {
  font: bold 15px Arial Black;
  color: white;
  text-decoration: none;
  width: 125px;
  text-align: center;
}

.tourAnnouncements {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  font: bold 20px Toledo2 Black;
}

@media (max-width: 768px) {
  .tourBorder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    padding: 1rem;
    text-align: center !important;
  }

  .tourTickets {
  padding-top: 0;
}

  .tourDates {
    text-align: center !important;
    padding: 0;
  }

  .tourAnnouncements {
    text-align: center !important;
  }

  .tourVenue,
  .tourLocation,
  .tourLink {
    padding: 0.5rem 0;
    width: 100%;
  }

  .tourLink {
    display: inline-block;
    margin-top: 0.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tourBorder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    padding: 1rem;
    text-align: center;
  }

  .tourVenue,
  .tourDates {
    text-align: center;
    padding: 0!important;
  }

  .tourDates,
  .tourVenue,
  .tourLocation,
  .tourLink {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }

  .tourLink {
    align-self: center;
  }
}

/* ===================================== */
/* STORE PAGE */
/* ===================================== */

.catalogGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem 2rem;
  padding: 2rem 0;
  margin: 0 auto;
  max-width: 1200px;
  justify-items: center;
}

@media (max-width: 768px) {
  .catalogGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .catalogGrid {
    grid-template-columns: 1fr;
  }
}

.catalogCard {
  background: transparent;
  padding: 0;
  text-align: center;
  font-family: Arial, sans-serif;
  max-width: 200px;
  width: 100%;
}

.catalogImageWrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background-color: #e9b4cb;
}

.catalogImage {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.catalogImage:hover {
  transform: scale(1.05);
}

.catalogCard h2 {
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.catalogCard p {
  font-size: 0.85rem;
  color: #000;
  font-weight: bold;
  margin: 0;
}

.catalogCard strong {
  font-size: 1rem;
  color: #000;
}

.catalogLink {
  text-decoration: none;
  color: inherit;
  display: block;
}

.categoryTitle {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  border-bottom: 2px solid black;
  padding-bottom: 0.5rem;
}

.productContainer {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
}

.productCard {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 2rem;
  background: #e9b4cb;
}

.productImageWrap {
  flex: 1 1 300px;
  max-width: 400px;
}

.productImage {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.productDetails {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.productName {
  font-size: 2rem;
  margin: 0;
}

.productDescription {
  color: #444;
}

.productPrice {
  font-size: 1.25rem;
  font-weight: bold;
}

.sizeSelect {
  padding: 0.5rem;
  font-size: 1rem;
  width: 150px;
}

.addToCartBtn {
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.addToCartBtn:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .productCard {
    flex-direction: column;
    align-items: center;
  }

  .productImageWrap,
  .productDetails {
    max-width: 100%;
  }
}

/* ===================================== */
/* CONTACT PAGE */
/* ===================================== */

.contactWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0.5rem auto 5rem auto;
  padding: 2rem;
  line-height: 1.7;
  font-size: 1rem;

  background-color: rgba(255, 255, 255, 0.15); /* more transparent */
  backdrop-filter: blur(0.5px); /* frosted effect */
  -webkit-backdrop-filter: blur(10px);

  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
}

.contactWrap a {
  color: white;
  text-decoration: none;
  text-shadow: -1px -1px 0 #fab678, 1px -1px 0 #fab678, -1px 1px 0 #fab678,
    1px 1px 0 #fab678;
}

.contactWrap a:hover {
  color: white;
  text-decoration: underline;
  text-shadow: -1px -1px 0 #fab678, 1px -1px 0 #fab678, -1px 1px 0 #fab678,
    1px 1px 0 #fab678;
}

/* ===================================== */
/* RETURN POLICY PAGE */
/* ===================================== */

.returnWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0.5rem auto 5rem auto;
  padding: 2rem;
  line-height: 1.7;
  font-size: 1rem;

  background-color: rgba(255, 255, 255, 0.15); /* more transparent */
  backdrop-filter: blur(0.5px); /* frosted effect */
  -webkit-backdrop-filter: blur(10px);

  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
}

.returnWrap h2,
.returnWrap h3 {
  margin-bottom: 1rem;
  font-weight: bold;
}

#returnGuide ul {
  list-style-type: disc;
  text-align: left;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

#returnGuide li {
  margin-bottom: 0.75rem;
}


.returnWrap a {
  color: white;
  text-decoration: none;
  text-shadow: -1px -1px 0 #fab678, 1px -1px 0 #fab678, -1px 1px 0 #fab678,
    1px 1px 0 #fab678;
}

.returnWrap a:hover {
  color: white;
  text-decoration: underline;
  text-shadow: -1px -1px 0 #fab678, 1px -1px 0 #fab678, -1px 1px 0 #fab678,
    1px 1px 0 #fab678;
}

/* ===================================== */
/* SHIPPING POLICY PAGE */
/* ===================================== */

.shippingWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0.5rem auto 5rem auto;
  padding: 2rem;
  line-height: 1.8;
  font-size: 1rem;

  background-color: rgba(255, 255, 255, 0.15); /* more transparent */
  backdrop-filter: blur(0.5px); /* frosted effect */
  -webkit-backdrop-filter: blur(10px);

  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
}

.shippingWrap h2,
.shippingWrap h3 {
  margin-bottom: 1rem;
  font-weight: bold;
}



#shippingGuide ul {
  list-style-type: disc;
  text-align: left;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

#shippingGuide li {
  margin-bottom: 0.75rem;
}


.shippingWrap a {
  color: white;
  text-decoration: none;
  text-shadow: -1px -1px 0 #fab678, 1px -1px 0 #fab678, -1px 1px 0 #fab678,
    1px 1px 0 #fab678;
}

.shippingWrap a:hover {
  color: white;
  text-decoration: underline;
  text-shadow: -1px -1px 0 #fab678, 1px -1px 0 #fab678, -1px 1px 0 #fab678,
    1px 1px 0 #fab678;
}

/* ===================================== */
/* TOS PAGE */
/* ===================================== */

.termsWrap {
  max-width: 700px;
  margin: 0.5rem auto 5rem auto;
  padding: 2rem;
  line-height: 1.7;
  font-size: 1rem;

  background-color: rgba(255, 255, 255, 0.15); /* more transparent */
  backdrop-filter: blur(0.5px); /* frosted effect */
  -webkit-backdrop-filter: blur(10px);

  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
}

.termsTitle {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
}

.tSubTitle {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-align: left;
}

.termsWrap a {
  color: white;
  text-decoration: none;
  text-shadow: -1px -1px 0 #fab678, 1px -1px 0 #fab678, -1px 1px 0 #fab678,
    1px 1px 0 #fab678;
}

.termsWrap a:hover {
  text-decoration: underline;
}

/* ===================================== */
/* PRIVACY POLICY PAGE */
/* ===================================== */

.privacyWrap {
  max-width: 700px;
  margin: 0.5rem auto 5rem auto;
  padding: 2rem;
  line-height: 1.7;
  font-size: 1rem;

  background-color: rgba(255, 255, 255, 0.15); /* more transparent */
  backdrop-filter: blur(0.5px); /* frosted effect */
  -webkit-backdrop-filter: blur(10px);

  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
}

.privacyTitle {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
}

.pSubTitle {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-align: left;
}

.privacyWrap p,
.privacyWrap li {
  margin-bottom: 1rem;
}

.privacyWrap a {
  color: white;
  text-decoration: none;
  text-shadow: -1px -1px 0 #fab678, 1px -1px 0 #fab678, -1px 1px 0 #fab678,
    1px 1px 0 #fab678;
}

.privacyWrap a:hover {
  text-decoration: underline;
}

.privacyWrap ol {
  padding-left: 1.5rem;
}

/* ===================================== */
/* FOOTER */
/* ===================================== */

footer a {
  color: white;
  text-decoration: none;
}

footer {
  background-image: url(images/footerBG.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: scroll;

  padding: 6rem 2rem 2rem 2rem; /* increased height from padding */
  font: 1.05rem Arial Black, sans-serif;
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  text-shadow: -1px -1px 0 #fab678, 1px -1px 0 #fab678, -1px 1px 0 #fab678,
    1px 1px 0 #fab678;
}
.footerBottom {
  margin-bottom: .5rem;
  gap: 1rem;
  padding-top: 3rem;
}

.footerLinks {
  margin-bottom: 2.5rem;
}

.footerLinks a {
  font-size: 1.5rem;
  margin: 0 0.75rem;
  font-style: italic;
  margin-top: 2rem;
}

.footerSocials a {
  margin: 0 10px;
}

.footerSocials img {
  width: 35px;
  height: 35px;
}

.footerSocials a:hover img {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.footerBottom a {
  font-size: .9rem;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .legalLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 0 1rem;
    
  }

  .footerBottom a {
    font-size: .7rem;

  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .legalLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    padding: 0 1rem;
    
  }
}

@media (min-width: 1400px) and (max-width: 1460px) {
  .legalLinks {
    gap: 5rem;
  }
}

@media (min-width: 1060px) and (max-width: 1100px) {
  .legalLinks {
    gap: 2rem;
  }
}

