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

body {
  background: #000;
  color: #fff;
  font-family: "Cabin", sans-serif;
  overflow-x: hidden;
}

.page-content, .footer-container{
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.home section, .navbar, .collection-page-content section, .contact-page-content section{
  margin-bottom: 6rem;
  margin-right: 40px;
  margin-left: min(150px, 50vw);
}

.active{
  scale: 1.2;
}
header .active a{
  color: #f39c12 !important;
  font-weight: 600 !important;
}
.navbar .active a span.current-active::after{ /*For the active page*/
  content: '';
  width: 30px; height: 2px;
  background-color: #f39c12;
  display: block;
  margin-top: 4px;
}

.sidebar {
  width: 80px;
  background: #222;
  height: 100vh;
  display: flex;
  gap: 100px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
}

.sidebar a{
  display: inline-block;
  position: absolute;
  top: 20px;
}

.sidebar .logo {
  width: 80px;
  pointer-events: none;
}

.sidebar .vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 12px;
  color: #aaa;
}

header {
  width: calc(100% - 80px);
  max-height: 70px;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 80px;
  z-index: 10;
  background-color: black;
}

header .navbar{
  display: grid;
  grid-template-columns: 1fr auto;
}
section.navbar{
  margin-bottom: 0px;
}

.navbar .shop-easy{
  display: inline-flex;
  gap: 10px;
}

.navbar .mobile-logo{
  max-width: 60px;
  position: absolute;
  left: 20px; top: 20px;
  display: none;
  z-index: 5;
}
.navbar .mobile-logo a{
  display: inline-block;
}
.navbar .mobile-logo img{
  width: 100%;
}

.navbar .shop-easy a{
  display: inline-block;
  text-align: center;
  padding: 6px;
  border-radius: 50%;
}

.navbar .shop-easy a:hover svg{
  transform: scale(1.2);
}
.navbar .shop-easy a svg{
  stroke: white;
  transition: transform .3s linear;
}
.navbar .shop-easy .wishlist, .navbar .shop-easy .cart{
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

header .navbar .search-bar{
  display: inline-flex;
  background-color: #fff;
  min-width: 180px;
  border-radius: 30px;
}

header .navbar .search-bar button.search-btn{
  background-color: inherit;
  border: none;
  border-radius: 30px;
}
header .navbar .search-bar button:hover{
  background-color: #49494968;
}

header .navbar .search-bar #search-input{
  border: none;
  border-right: 1px solid black;
  padding: 3px;
  margin: 8px;
  margin-right: 0px;
  font-size: 16px;
  outline: none;
}

header .navbar .search-bar svg{
  position: relative;
  left: 0;
  top: 1px;
  margin-left: 6px;
  margin-right: 7px;
}

header .search-panel{
  background-color: black;
  left: 80px; top: 0;
  position: fixed;
  width: calc(100% - 80px); 
  height: 50vh;
  padding-top: 10px;
  grid-template-columns: 1fr 3fr 1fr;
  grid-template-rows: minmax(40px, 60px) 1fr;
  row-gap: 2.5rem;
  z-index: 5;
  display: none;
}
header .search-panel.panel-show{  
  display: grid;
}
header .search-panel .search-panel-items{
  grid-column: span 3;
  grid-row: span 1;
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  align-items: center;
  max-height: fit-content;
}
header .search-panel .search-panel-items .search-panel-btn{
  border-radius: 50px;
  padding: 6px;
  border: none;
  position: relative;
  top: 1px;
  left: 1px;
  background-color: #fff;
}
header .search-panel-items .search-content{
  background-color: #fff;
  border-radius: 50px;
  max-height: 42px;
}
header .search-panel .search-panel-logo{
  max-width: 100px;
  
}
header .search-panel .search-panel-logo img{
  width: 100%;
  margin-left: 20px;
}
.search-panel #search-panel-input{
  border: none;
  width: calc(100% - 50px);
  padding: 8px;
  font-size: 16px;
  outline: none;
  border-radius: 50px;
  height: 100%;
  position: relative;
  top: -5px; left: -3px;
}

.search-panel .search-cancel-container{
  justify-self: end;
}
.search-panel .search-cancel-container .search-cancel-btn{
  font-weight: 600;
  font-size: 16px;
  margin-right: 2rem;
  outline: none;
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.search-panel .search-cancel-container .search-cancel-btn:hover{
  color: #f0efefd3;
}

.search-panel .pop-search-terms{
  grid-column: 2/3;
}
.search-panel .pop-search-terms .search-terms{
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.search-panel .pop-search-terms a{
  text-decoration: none;
  color: #fff;
  background-color: #f2eeee15;
  border-radius: 50px;
  padding: 13px;
}
.search-panel .pop-search-terms a:hover{
  background-color: #f2eeee37;
}
.search-panel .pop-search-terms p{
  margin-bottom: 1rem;
}

header .search-panel-overlay{
  width: calc(100% - 80px);
  margin-left: 80px;
  height: 100vh;
  max-height: 100vh;
  position: fixed;
  left: 0; top: 0;
  background-color: #4949494b;
  z-index: 1;
  display: none;
}header .search-panel-overlay.overlay-show{
  display: inline-block;
}


.shop-easy a{
  text-decoration: none;
}
.shop-easy{
  position: relative;
}
.shop-easy .cart, .shop-easy .wishlist{
  position: relative;
}
/* -------- To show number of items in the cart-------------- */
.shop-easy .cart::after{
  content: attr(data-cart-item-no);
  background-color: #f39c12;
  height: 16px; width: 16px;
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #000;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  right: 0;
  top: -3px;
}
/* -------------------------------------------------- */
/* -------- To show number of items in the wishlist-------------- */
.shop-easy .wishlist::after{
  content: attr(data-wishlist-item-no);
  background-color: #f39c12;
  height: 16px; width: 16px;
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #000;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
/* -------------------------------------------------- */

nav.nav-controls ul {
  display: flex;
  list-style: none;
  justify-content: center;
  padding-left: 70px;
  padding-top: 8px;
  gap: 1.6vw;
  
}

nav.nav-controls ul li {
  margin: 0 15px;
}

nav.nav-controls ul li a {
    color: #fff;
    text-decoration: none;
}
nav.nav-controls ul li a span{
  display: inline-block;
}

.shop-easy .menu{
  background-color: transparent;
  border: none;
  padding-top: 4px;
  display: none;
}

.navbar .menu-bar{
  background-color: black;
  height: 100vh; width: 40vw;
  position: absolute;
  top: 0; right: 0;
  padding-top: 1.5rem;
  z-index: 2;
  /* opacity: 0; */
  transform: translateX(100vw);
  transition: transform 0.3s ease;
  overflow-y: auto;
  scrollbar-width: none;     /*To get rid of scroll bar*/
  -ms-overflow-style: none;   /*To get rid of scroll bar*/
  padding-bottom: .3rem;
}

.navbar .menu-bar::-webkit-scrollbar {
  display: none;     /*To get rid of scroll bar*/         
}

.navbar .menu-bar .menu-shortcuts{
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
}

.navbar .menu-bar .menu-shortcuts a{
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  border-bottom: 1px solid #fff;
}

.navbar .menu-bar .menu-shortcuts a .menu-shortcuts-item{
  display: inline-flex;
  align-items: center;
}

.navbar .menu-bar .menu-shortcuts a .menu-shortcuts-item span{
  margin-left: 1rem;
}

.navbar .menu-bar .menu-shortcuts svg{
  min-width: 20px;
}

.menu-bar .menu-shortcuts a:nth-child(1){
  border-top: 1px solid #fff;
}

.navbar .menu-bar .menu-top{
  display: flex;
  justify-content: space-between;
  align-content: center;
  margin-bottom: 4rem;
}

.navbar .menu-bar .nav-image{
  max-width: 70px;
  margin-left: 10px;
}
.navbar .menu-bar .nav-image img{
  width: 100%;
}

.navbar .menu-bar .menu-top .close-menu{
  max-height: 35px;
  margin-right: 2rem;
  padding: 0 7px;
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.navbar .menu-bar .menu-nav-controls ul{
  display: flex;
  flex-direction: column;
}
.navbar .menu-bar .menu-nav-controls ul li{
  display: block;
  list-style: none;
}
.menu-nav-controls ul li a{
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
}
.menu-nav-controls ul li a span{
  display: inline-block;
}
.menu-nav-controls .menu-active{
  scale: 1;
}

.menu-bar .menu-nav-controls button{
  background-color: transparent;
  text-align: left;
  border-bottom: 1px solid #fff;
  border-top: none;
  border-left: none;
  border-right: none;
}
.menu-bar .menu-nav-controls button:nth-child(1){
  border-top: 1px solid #fff;
}

.navbar .menu-overlay{
  width: 100vw; height: 100vh;
  position: absolute;
  top: 0; left: -80px; bottom: 0; right: 0;
  background-color: #49494927;
  z-index: 1;
  display: none;
}

.navbar .menu-show{
  display: inline-block;
}
.navbar .menu-slide-in{
  /* opacity: 1; */
  transform: translateX(0);
}



/* ------------------------------ HOME PAGE ------------------------------------- */

#home-page{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 100vh;  
}

#home-page .content h1 {
    font-size: 120px;
    font-family: "Black Ops One", system-ui;
    font-weight: 700;
    margin-top: 100px;
    line-height: 1;
}

#home-page .content h3 {
    font-size: 40px;
    font-weight: 400;
    font-style: normal;
    color: #aaa;
    padding-bottom: 50px;
}

#home-page .content .description {
    max-width: 400px;
    color: #bbb;
    line-height: 2;
}

#home-page .content .shop-btn{
    display: inline-block;
}

#home-page .content .buy-btn {
    background: #444;
    color: #fff;
    padding: 10px 20px;
    border: none;
    margin-top: 50px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50px;
    transition: 0.3s;
}

#home-page .content .buy-btn:hover {
    background: #fff;
    color: #000;
}

#home-page .shoe-container {
    position: relative;
    overflow: hidden; /* Prevent scrollbars */
}

#home-page .glow {
    position: absolute;
    width: 700px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 80%);
    top: 85%;
    left: -10%;
    filter: blur(30px);
    pointer-events: none;
    z-index: 1;
}

#home-page .shoe-wrapper{
  width: 700px;
  z-index: 10;
  transition: transform 0.6s ease;
}

#home-page .nike-shoe {
    width: 100%;
    position: relative;

    /* Improve sharpness */
    image-rendering: crisp-edges;
    filter: contrast(1.2) brightness(1.1);

    opacity: 0;
    transform: translateX(100%);
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 0.3s; 
}
@keyframes slideInRight {
    to {
        transform: translateX(0) rotate(-20deg) skewX(-10deg);
        opacity: 1;
      }
}

#home-page .content{
    opacity: 0;
    transform: translateX(0%);
    animation: slideInLeft 1s ease-in forwards;
    animation-delay: 0.3s; 
}
@keyframes slideInLeft{
    to{
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hover effect */
#home-page .shoe-wrapper:hover {
    transform: scale(1.2) rotate(10deg) skewX(5deg);
}

nav.nav-controls ul li:not(.active):hover{
    background-image:  linear-gradient(45deg, #ffffff, #b0b0b0, #505050, #b0b0b0, #ffffff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;  
    animation: floatColor 1s linear infinite;
    scale: 1.1;
}
@keyframes floatColor {
    0% {
        background-position: 200% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
} 

#photo-wall .photo-wall-flex{
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;     /*To get rid of scroll bar*/
  -ms-overflow-style: none;   /*To get rid of scroll bar*/
}

.carousel-track::-webkit-scrollbar {
  display: none;     /*To get rid of scroll bar*/         
}

#photo-wall .photo-wall-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

#photo-wall .photo-wall-container .photo-wall-item{
  position: relative;
  min-width: calc(350px - 50px);
  min-height: 350px;
}

#photo-wall .photo-wall-container img{
  width: 100%;
  min-height: 350px;
}

#photo-wall .photo-wall-container .photo-wall-item button{
  padding: 10px;
  border-radius: 50px;
  font-weight: 600;
  position: absolute;
  right: 25px;
  bottom: 30px;
  border: none;
  box-shadow: 1px 1px 2px black;
  background-color: #ccc;
  transition: transform 0.4s ease;
}
#photo-wall .photo-wall-container .photo-wall-item button:hover{
  transform: scale(1.1);
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

/* ------------------------------------------------------ */

/* -------------- HOMEPAGE ABOUT SECTION ------------------------ */
#about-section{
  text-align: center;
}

#about-section h2{
  margin-bottom: 2rem;
  font-size: 48px;
}
#about-section p{
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

#about-section button{
  background-color: whitesmoke;
  padding: 10px;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.2s linear;
}
#about-section button:hover{
  background: black;
  border: 1px solid white;
  color: white;
}

/* -------------------------------------------------------- */

/* ------------------ VIDEO SECTION--------------- */
#video-section{
  margin: 8rem 0;
}

#video-section .video-player{
  position: relative;
  margin-left: 80px;
}

.video{
  width: 100%;
  max-height: 130vh;
  min-height: 115vh;
  object-fit: cover;
}
.video-player button.muted{
  background-color: transparent;
  border: none;
  z-index: 1;
  position: absolute;
  right: 20px;
  bottom: 10px;
  cursor: pointer;
}
.video-player button.unmuted{
  background-color: transparent;
  border: none;
  z-index: 100;
  position: absolute;
  right: 20px;
  bottom: 10px;
  cursor: pointer;
  display: none;
}
#video-section .video-player button.mute{
  display: none;
}
#video-section .video-player button.unmute{
  display: inline-block;
}
/* --------------------------------------------------- */


/*-------------- TOP OFFERS -----------------*/
#top-offers h2{
  font-size: 40px;
  padding-top: 20px;
  padding-bottom: 50px;
  text-align: center;
}

#top-offers .carousel{
  display: flex;
  align-items: center;
  position: relative;
}

.carousel .carousel-track{
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;  
  scrollbar-width: none;     /*To get rid of scroll bar*/
  -ms-overflow-style: none;   /*To get rid of scroll bar*/
}

.carousel-track::-webkit-scrollbar {
  display: none;     /*To get rid of scroll bar*/         
}

#top-offers .carousel  .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.3rem 1rem;
  z-index: 1;
  border-radius: 50%;
}

.carousel-btn.prev {
  left: 10px;
}
  
.carousel-btn.next {
  right: 10px;
}  

.carousel .carousel-track .card{
  flex: 0 0 calc(25% - 30px);  
  min-width: 250px;
}

.carousel .carousel-track .card img {
  max-width: 100%;
  margin-bottom: .7rem;
}

.carousel .carousel-track .card p{
  margin-top: .5rem;
}

.carousel .carousel-track .card:hover{
  border: 1px solid white;
}
/* ----------------------------------------------------------------- */



/*-------------------CONTACT FOOTER--------------------*/
.footer {
    background: #191919;
    padding: 40px 20px 10px;
    width: calc(100% - 80px);
    margin-left: 80px;
    margin-top: 8vw;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    padding: 0 100px;
  }

  .footer-column.logo{
    max-width: 200px;
  }

  .footer-column.logo img{
    width: 100%;
  }

  .footer-column.logo a{
    display: inline-block;
  }
  
  .footer-column h4 {
    border-bottom: 2px solid white;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 20px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }
  
  .footer-column p {
    font-size: 16px;
  }

  .footer-column.newsletter{
    max-width: 330px;
  }
  
  .subscribe-box {
    display: flex;
    margin-top: 10px;
  }
  
  .subscribe-box input {
    padding: 12px;
    flex: 1;
    border: none;
    border-radius: 3px 0 0 3px;
    outline: none;
    font-size: 16px;
  }
  
  .subscribe-box button {
    padding: 8px 15px;
    background-color: white;
    color: #007bff;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
  }
  
  .footer-bottom {
    border-top: 1px solid white;
    margin-top: 30px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 90px;
  }
  
  .footer-bottom p {
    font-size: 14px;
  }
  
  .social-icons a img {
    width: 30px;
    margin-left: 10px;
    vertical-align: middle;
  }


/* ---------------------------- ABOUT PAGE -------------------------------- */
.hero {
  text-align: center;
  margin-top: 120px;
}

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

.hero h1 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
  font-family: "Cabin", "sans-serif";
  font-family: "Black Ops One";
}

.hero p {
  font-size: 1rem;
  color: #666;
}

.story, .values, .team, .cta, .hero {
  margin-bottom: 3rem;
  margin-right: 40px;
}
.story, .values{
  line-height: 1.8;
}
.team{
  line-height: 1.4;
}

.hero{
  margin-right: 40px;
  margin-left: min(150px, 50vw);
}

.story h2, .values h2, .team h2, .cta h2 {
  font-size: 1.25rem;
  color: #3b3b3b;
}

.values ul {
  list-style: disc;
  padding-left: 1.5rem;
}

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

.team-member {
  text-align: center;
  margin-bottom: 1rem;
}

.team-member img {
  max-width: 100px;
  border-radius: 50%;
  height: auto;
}

.team-member h3 {
  font-size: 1rem;
  margin: 0.5rem 0 0.25rem;
}

.team-member p {
  font-size: 0.875rem;
  color: #666;
}

.cta {
  text-align: center;
}
.cta h2{
  margin-bottom: .7rem;
}

.button {
  background-color: #333;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
}

.button:hover {
  background-color: #555;
}



/* Media Queries for Responsiveness */

/* Tablet screens (min-width: 768px) */
@media (min-width: 320px){
  
.hero img {
  min-width: 80%;
}

.hero h1 {
  font-size: 1.7rem;
}

.hero p {
  font-size: 1rem;
}

.story h2, .values h2, .team h2, .cta h2 {
  font-size: 1.25rem;
}

.team h2{
  margin-bottom: 1.5rem;
}
.cta{
  margin-top: 4rem;
}
}

@media(min-width: 580px){
  .hero img {
    max-width: 80%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
      font-size: 1.25rem;
  }

  .story h2, .values h2, .team h2, .cta h2 {
      font-size: 1.5rem;
  }
}

@media(min-width: 680px){
.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.5rem;
}

.story h2, .values h2, .team h2, .cta h2 {
    font-size: 1.5rem;
}

.cta{
  margin-top: 6rem;
}
}

@media (min-width: 768px) {
  .team {
      flex-direction: row;
      justify-content: space-around;
  }

  /* .team-member:nth-child(1) {
      margin-bottom: .7rem;
  } */
}

/* Desktop screens (min-width: 1024px) */
@media (min-width: 1024px) {
  .hero img {
      min-width: 90%;
      max-height: 350px;
      object-fit: cover;
  }

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

  .story h2, .values h2, .team h2{
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .cta h2{
    font-size: 2rem;
  }

  .story, .values, .team, .cta {
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
  }

  .team-member img {
      max-width: 120px;
  }
}

@media(max-width: 1091px){
  .hero{
    margin-right: 40px;
    margin-left: min(40px, 50vw);
  }
}
/* --------------------------------------------------------------------- */


/*----------------------------COLLECTION PAGE------------------------------------------*/
.collection-page-content{
  margin-top: 150px;
}
#collection .shoe-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  row-gap: 3rem;
  margin-top: 20px;
  position: relative;
  grid-auto-flow: dense;
  grid-auto-rows: min-content;

  /* Prevent extra spacing */
  align-content: start; /* Align items to top, no stretching */
  justify-content: start;
}
/* Style for hidden products to ensure no space is reserved(used this in js) */
.product.hidden {
  display: none !important; 
  height: 0; width: 0;
  margin: 0; padding: 0;
}

.collection-header{
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.collection-header .products-number{
  font-size: 1.1rem;
  color: #e6e6e6;
}

#collection h1{
  font-size: 2rem;
  font-family: system-ui;
  margin-bottom: 3rem;
}

/* mobile filters */
.collection-header .mobile-filter-container{
  position: fixed;
  z-index: 5;
  background-color: #000;
  width: 100%; height: 100%;
  left: 0; top: 0; bottom: 0;
  padding-left: 40px; padding-top: 70px; padding-right: 30px;
  overflow-y: auto;
  transform: translateX(100%);
  scrollbar-width: none;     /*To get rid of scroll bar*/
  -ms-overflow-style: none;   /*To get rid of scroll bar*/
  overscroll-behavior: contain;
}

.mobile-filter-container::-webkit-scrollbar {
  display: none;     /*To get rid of scroll bar*/         
}

.collection-header .mobile-filter-container.mobile-filter-open{
  transform: translateX(0);
  transition: transform .4s linear;
}

.collection-header .mobile-sort-and-filter .mobile-filter-btn{
  background-color: transparent;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  /* white-space: nowrap; */
  position: relative;
  cursor: pointer;
  border: 2px solid white;
  border-radius: 50px;
  padding: 1px 12px;
  display: none;
}
.mobile-sort-and-filter .mobile-filter-btn svg{
  margin-left: 6px;
}

.collection-header .mobile-filter-container .mobile-show-filter{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3em;
  margin-bottom: 3rem;
}

.collection-header .mobile-filter-container .mobile-show-filter .mobile-cancel-box{
  border-radius: 50%;
  background-color: #333;
  padding: 0px 12px;
}

.collection-header .mobile-filter-container .mobile-sort-options h3{
  margin-bottom: 1.5rem;
}

.collection-header .mobile-filter-container .mobile-sort-options .sort-by-form div{
  margin-bottom: 1.5rem;
}
.mobile-sort-options .sort-by-form label{
  display: inline-flex;
  align-items: center;
}
/* Base radio style */
.mobile-sort-options .sort-by-form input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  position: relative;
  cursor: pointer;
}

/* Add the dot when checked */
.mobile-sort-options .sort-by-form input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 3.5px;
  left: 3.5px;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
}

.mobile-filter-container .mobile-sort-options{
  border-bottom: 1px solid rgb(23, 23, 23);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

.mobile-filter-container .mobile-filter-options .toggle-section{
  border-bottom: 1px solid rgb(23, 23, 23);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
}

.mobile-filter-container .mobile-colors {
  display: flex;
  column-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  border-bottom: 1px solid rgb(23, 23, 23);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.mobile-filter-container .mobile-color-box-container{
  flex: 0 0 27%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-filter-container .mobile-color-box {  /* color box generated by javascript*/
  aspect-ratio: 1/1;
  width: 80px;
  white-space: normal;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.5rem;
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(255, 254, 254, 0.1);
  cursor: pointer;
  border: 2px solid rgb(32, 32, 32);   
}
.mobile-filter-container .mobile-color-box.active-color {
  border-color: #fff;
}
.mobile-filter-container .mobile-color-box:hover{
  opacity: 0.7;
}

.mobile-filter-container .mobile-price-filter{
  border-bottom: 1px solid rgb(23, 23, 23);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.mobile-filter-container .mobile-price-filter h3{
  margin-bottom: 1.5rem;
}

.mobile-price-filter .slider-container {
  width: 80%;
}

.mobile-price-filter .slider-border{
  border: 1px solid rgb(135, 135, 135);
  padding: 8px; padding-bottom: 12px;
  margin-bottom: 1rem;
  border-radius: 50px;
}

.mobile-price-filter .value-display {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.mobile-price-filter input[type=range] {
  width: 100%;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.mobile-price-filter input[type=range]::-webkit-slider-thumb {
  appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  margin-top: -8px;
}

.mobile-price-filter input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: white;
  border-radius: 2px;
}

.mobile-price-filter input[type=range]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.mobile-price-filter input[type=range]::-moz-range-track {
  height: 4px;
  background: white;
  border-radius: 2px;
}

.mobile-filter-container .mobile-show-products-div{
  margin-bottom: 3rem;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.mobile-filter-container .show-products-btn {
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  font-family: Cabin, serif;
  border: 2px solid white;
  transition: background-color linear;
  padding: 10px 100px;
}
.mobile-filter-container .show-products-Clearbtn{
  background-color: black;
  color: white;
}
.mobile-filter-container .show-products-Applybtn{
  background-color: #fff;
}

/* Not mobile filters */
.collection-header .sort-and-filter{
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-family: "Cabin", sans-serif;
}

.collection-header .sort-and-filter .sort-btn, 
.collection-header .sort-and-filter .filter-btn{
  background-color: transparent;
  color: white;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.collection-header .sort-and-filter .sort-btn span, 
.collection-header .sort-and-filter .filter-btn span{
  margin-right: 4px;
}
.collection-header .sort-and-filter .sort-btn-div{
  display: flex;
  justify-items: center;
  position: relative;
}
.chevron-up{
  display: none;
}
.chevron-not-show{
  display: none;
}
.sort-and-filter .chevron-show{
  display: inline-block;
}
.collection-header .sort-by{
  position: relative;
  top: 2px;
}
.collection-header .sort-and-filter .sort-options{
  background-color: #000;
  z-index: 10;
  padding: 24px 20px 12px 0px;
  width: max-content;
  position: absolute;
  top: 35px;
  right: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transform: scale(0);  
  transform-origin: top right;
  transition: transform 0.3s ease;    
}
.collection-header .sort-and-filter .show-dropdown{ /*additional class for menu*/
  transform: scale(1);
}

.collection-header .sort-and-filter .sort-options button{
 min-width: 112px;
 text-align: right;
 background-color: #000;
 color: #fff;
 border: none;
 display: block;
 padding-bottom: 15px;
font-size: 18px;
}

.collection-header .sort-and-filter .sort-options ul{
  list-style-type: none;
  text-align: right;
  padding-left: 20px;
}
.collection-header .sort-and-filter .sort-options li:hover{
  color: grey;
}

.sort-and-filter .filter-container{
  width: 50%;
  height: 100%;
  z-index: 5;
  background-color: black;
  position: fixed;
  right: 0;
  bottom: 0;
  transform: translateX(100vw);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column; /*Turn the filter container to a vertcal and allows scrolling if needed*/
}

.sort-and-filter .filter-container.filter-open {  /*To open filter contsiner*/
  transform: translateX(0);
}

.no-scroll {
  overflow: hidden;
}

.add-filter-overlay{
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #49494968;
  z-index: 3;
}


.filter-container .filter-options{
  flex: 1;
  padding: 68px 70px;
  max-width: 1200px;
  margin: auto;
  overflow-y: auto; /* enable vertical scroll */
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
}
.filter-container::-webkit-scrollbar {
  display: none;                /* Chrome, Safari */
}

.filter-container .filter-options .show-filter{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3em;
  margin-bottom: 4rem;
}

.filter-container .filter-options .cancel-box{
  border: 1px solid white;
  padding: 0px 10px;
}

.filter-container .toggle-section {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
  border-bottom: 1px solid #f8f8f843;
  border-top: 1px solid #f8f8f843;
}
.toggle-section .toggle-label {
  font-weight: bold;
}
.toggle-section .toggle-switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
}
.toggle-section .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-section .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.toggle-section .slider::before {
  position: absolute;
  content: "";
  height: 21px;
  width: 21px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.toggle-section .toggle-switch input:checked + .slider {  /*When the input inside .toggle-switch is checked, apply styles to the .slider element that comes right after it*/
  background-color: #3f3f3f;
}
.toggle-section .toggle-switch input:checked + .slider::before {
  transform: translateX(20px);
}

.filter-container .color{
  border-bottom: 1px solid #f8f8f843;
  padding: 3rem 0;
}
.filter-container .color h2{
  font-size: 16px;
  font-family: Cabin , sans-serif;
}

.filter-container .filter-options .filter-show{
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  padding-bottom: 0;
}

.filter-container .color .color-btn{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  background-color: transparent;
  color: white;
  border: none;
}
.filter-container .color .color-btn.color-btn-padding{
  padding-bottom: 0; /*To remove padding buttom when user collapses color div*/
}
.color-chevron-up{
  display: none;
}

.filter-container .colors {
  display: flex;
  column-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-height: 100%;
  opacity: 1;
  pointer-events: auto;
  transition: max-height 0.3s linear, opacity 0.4s ease-out;
}
.filter-container .color-box-container{
  flex: 0 0 27%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sort-and-filter .color-box {  /* color boxgenerated by javascript*/
  aspect-ratio: 1/1;
  width: 120px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.5rem;
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(255, 254, 254, 0.1);
  cursor: pointer;
  border: 2px solid rgb(32, 32, 32);
}
.sort-and-filter .color-box.active-color {
  border-color: #fff;
}
.filter-container .color-box:hover{
  opacity: 0.7;
}

.filter-container .price-filter{
  border-bottom: 1px solid #f8f8f843;
  padding: 3rem 0;
  margin-bottom: 10rem;
}
.filter-container .price-filter .price-btn{
  padding-bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: transparent;
  color: white;
  border: none;
}
.filter-container .price-filter .price-btn.price-btn-padding{
  padding-bottom: 0; /*To remove padding buttom when user collapses price div*/
}

.price-filter .slider-border{
  border: 1px solid rgb(135, 135, 135);
  padding: 10px; padding-bottom: 15px;
  margin-bottom: 1rem;
  border-radius: 50px;
}

.price-filter input[type=range] {
  width: 100%;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.price-filter input[type=range]::-webkit-slider-thumb {
  appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  margin-top: -8px;
}

.price-filter input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: white;
  border-radius: 2px;
}

.price-filter input[type=range]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.price-filter input[type=range]::-moz-range-track {
  height: 4px;
  background: white;
  border-radius: 2px;
}

.price-filter .price-btn label{
  font-size: 16px;
  font-family: Cabin, sans-serif;
}
.price-chevron-up{
  display: none;
}

.price-slider{
  max-height: 100px;
  opacity: 1;
  pointer-events: auto;
  transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
}
.filter-container .price-filter input {
  width: 100%;
}

.filter-container .show-products-btn {
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  font-family: Cabin, serif;
  border: 2px solid white;
  transition: background-color linear;
  padding: 10px 100px;
}
.filter-container .show-products-Clearbtn{
  background-color: black;
  color: white;
}
.filter-container .show-products-Applybtn{
  background-color: #fff;
}
.filter-container .show-products-Clearbtn:hover span{
  border-bottom: 2px solid white;
}
.filter-container .show-products-Applybtn:hover span{
  border-bottom: 2px solid black;
}

.filter-container .show-products-div{
  box-shadow: 4px -1px 4px rgba(255, 255, 255, 0.7);
  background-color: #000;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 15%;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  flex-shrink: 0;
}


#collection .shoe-grid a{
  text-decoration: none;
  color: #fff;
  display: inline-block;
  position: relative;
}

#collection .shoe{
  position: relative;
  max-height: 450px;
}

#collection .shoe svg{
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: inline-block;
}

#collection .shoe img{
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
}
#collection .shoe-text{
    margin-top: 15px;
}

#collection .shoe h3{
    padding-top: 25px;
}
#collection h3 + p{
    margin-top: 10px;
    color: #bbb;
}

#collection .shoe-text .price{
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
}

@media(min-width:1091px){
 #collection .shoe-text{
  margin-left: 5px;
  }

  #collection .product {
    position: relative; /* Ensure .product is the containing block for ::before */
  }

  #collection .product:hover::before {
  content: ""; /* For the space between the price and the box-shdow as the box-shadow didn't respect the margin-bottom*/
  position: absolute;
  top:  -2px;  
  left: -2px;   
  right:-2px;    
  bottom: -20px; 
  box-shadow: 0 0 0 2px white;
}
}

/* ------------------------------------------------------------------------------------ */



/*----------------------------CONTACT PAGE------------------------------------------*/
.contact-page-content{
  margin-top: 80px;
  position: relative;
}

 .contact-banner{
  width: calc(100% - 80px);
  max-height: 300px;
  margin-left: 80px;
  margin-bottom: 6rem;
  display: flex;
  position: relative;
}
.contact-banner .banner-overlay{
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
}
 .contact-banner img{
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}
 .contact-banner h2{
  color: #E6E6E6;
  font-size: 4rem;
  position: absolute;
  /* right: 150px; */ right: 10%;
  top: 50%;
  font-weight: bolder;
  font-family: "Black Ops One", system-ui;
  z-index: 2;
}

.contact-page-content .contact-details h2 {
  font-weight: 400;
  font-size: 16px;
  color: #ffffffa8;
  margin-bottom: 1.5rem;
}

.contact-page-content .contact-details h1{
  font-size: 3rem;
  margin-bottom: 3rem;
}

.contact-section {
  padding: 2rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.contact-details {
  flex: 1 1 400px;
}

.contact-details .office .contact-icon{
  max-width: 16px;
  margin-right: 12px;
}

.contact-details .office h3 {
  font-size: 1.2rem;
  margin-bottom: 1.7rem;
}

.contact-details .office p {
  margin-bottom: 1.3rem;
}
.contact-details .office p a{
  color: #fff;
}
.contact-details .office p a.nl{
  text-decoration: none;
}

/* Embedded Map */
.map {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

/* CONTACT FORM */
.headers-and-form{
  border-radius: 5px;
  padding: 3rem;
  box-shadow: 0 0 1px ;
  width: 100%;
}

.contact-page-content .contact-form-container h1{
  margin-bottom: 2.5rem;
  font-size: 28px;
}

form#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 1rem;
}

form#contact-form button[type="submit"] {
  width: fit-content;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  color: #fff;
  background-color: #333;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1rem;
}

form#contact-form button[type="submit"]:hover {
  background-color: #555;
}

/* FAQ container and header styling */
.faq-container {
  background: #f8f8f8;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  flex: 1 1 calc(47% - 6rem);
}

#faq {
  scroll-margin-top: 80px; /* When a user clicks the FAQ link, the FAQ section will be scrolled into view just below the fixed header, not hidden behind it. */
}

.faq-container h2 {
  font-size: 1.8em;
  margin-bottom: 1rem;
  color: #000;
}

/* FAQ item styling */
.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

/* FAQ question styling */
.faq-question {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.2em;
  margin: 0;
  color: #080808;
}

.faq-toggle {
  font-size: 1.2em;
  transition: transform 0.3s ease;
  color: black;
}

/* FAQ answer is hidden by default */
.faq-answer {
  display: none;
  padding-top: 10px;
  color: #555;
  font-size: 1em;
}

/* Show the answer when the faq-item has the active class */
.faq-item.faq-active .faq-answer {
  display: block;
}

/* Rotate icon when expanded */
.faq-item.faq-active .faq-toggle {
  transform: rotate(181deg);
}

.form-and-faq{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6rem;
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-and-faq .contact-form-container{
  flex: 1 1 calc(53% - 6rem);
}

/*----------------------------------------------------------------------------------*/



/* --------------------------------------- PRODUCT PAGE -----------------------=------------------ */
.product-page-content section{
  margin-bottom: 6rem;
  margin-right: 40px;
  margin-left: min(150px, 50vw);
}

.product-detail {
  margin-top: 100px; margin-bottom: 40px;
  color: #fff;
  font-family: "Cabin", sans-serif;
}

.product-detail-container {
  display: flex;
  gap: 3rem;
  padding: 2rem;
  background: #111;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.product-images .main-image {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.product-images .thumbs {
  display: flex;
  gap: 1rem;
}

.product-images .thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.product-images .thumb.active-thumb,
.product-images .thumb:hover {
  opacity: 1;
  transform: scale(1.1);
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* edit margin now */
}

.product-info .product-name{
  margin-bottom: 0.2rem;
}

.product-info .product-description{
  margin-bottom: 1rem;
  color: #bbb;
}

.product-info .product-price{
  font-size: 1.5rem;
  font-weight: bold;
}

.product-info h3{
  margin-top: 4rem;
  margin-bottom: 0.2rem;
}
.product-info .snug-fit{
  margin-bottom: 1.5rem;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 0rem;
}

.product-info .price {
  font-size: 2rem;
  color: #f39c12;
}

.product-info .description {
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.action-buttons .cart-and-wishlist{
  display: flex;
  gap: 1rem;
}

.action-buttons button {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  font-family: "Cabin", sans-serif;
}

.action-buttons .buy-now {
  background: #f39c12;
  color: #000;
}

.action-buttons .add-to-cart {
  background: #333;
  color: #fff;
}
.action-buttons .wishlist-btn{
  border-radius: 50%;
  padding: .8rem 1rem;
  background-color: #333;
}
.action-buttons .wishlist-btn svg{
  position:relative;
  top: 13%; left: 2%;
}

.action-buttons .wishlist-btn:hover, .action-buttons .wishlist-btn:hover svg{
  stroke: red;
  transform: scale(1);
}

.action-buttons button:hover {
  transform: scale(1.05);
}

/* ---------------------- SH0E SIZE------------ */
.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 400px;
  margin-bottom: .5rem;
  padding: 6px 4px;
}

.size-button {
  padding: 10px 15px;
  border: 2px solid transparent;
  border-radius: 6px;
  background-color: #e4e4e4;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s ease;
}

.size-button:hover {
  border-color: #f39c12;
  border-width: 2px;
}

.size-button.selected {
  border-color: #f39c12;
  box-shadow: 0 0 0 2px #000 inset;
}

.size-button.disabled {
  color: #aaa;
  background-color: #f5f5f5;
  cursor: not-allowed;
  pointer-events: none;
}

.select-size{
  border: 2px solid #D30005;
  border-radius: 5px;
}
.product-info .Invalid-size p{
  color: #D30005;
}

.product-detail .product-detail-container.product-not-found{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  font-size: 1.2rem;
  background-color: #111;
}

/*-- CART POP-UP & OVERLAY --*/
.cart-pop-up-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.45);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-pop-up-overlay.cart-active {
  opacity: 1;
  pointer-events: auto;
}

.cart-pop-up {
  position: fixed;
  z-index: 1100;
  background: #181818;
  color: #fff;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  width: 370px;
  max-width: 95vw;
  top: 85px;
  right: 70px;
  transform: translateX(110%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.25s;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  gap: 1.1rem;
  scale: 1.2;
}
.cart-pop-up.cart-active {
  transform: translateX(0);
  opacity: 1;
}

.cart-pop-up .close-pop-up {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0 0.4rem;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.cart-pop-up .close-pop-up:hover {
  color: #f39c12;
}

.cart-pop-up .cart-pop-up-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 1.1rem;
}
.cart-pop-up .cart-pop-up-header .checkmark {
  color: #27ae60;
  font-size: 1.3rem;
}

.cart-pop-up .cart-pop-up-product {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.cart-pop-up .cart-pop-up-product .image-div{
  width: 80px;
  max-height: 90px;
  border-radius: 10px;
}
.cart-pop-up .cart-pop-up-product img {
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.cart-pop-up .cart-pop-up-product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cart-pop-up .cart-pop-up-product-name {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.cart-pop-up .cart-pop-up-product-desc {
  font-size: 0.97rem;
  color: #bbb;
  margin-bottom: 0.2rem;
}
.cart-pop-up .cart-pop-up-product-size {
  font-size: 0.97rem;
  color: #f39c12;
  margin-bottom: 0.2rem;
}
.cart-pop-up .cart-pop-up-product-price {
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
}

.cart-pop-up .cart-pop-up-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.7rem;
}
.cart-pop-up .view-cart-btn {
  background: #fff;
  color: #181818;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cart-pop-up .view-cart-btn:hover {
  background: #f39c12;
  color: #fff;
}

/* ----------------------------------------------------------------------------------------------------------- */


/* --------------------------------------- CART PAGE -----------------------=------------------ */

/* --- Cart Page Styles --- */
.cart-page-content {
 margin-left: 80px;
 padding: 0 80px;
 margin-bottom: 6rem;
}

.cart-main{
  max-width: 1100px;
  margin: 100px auto 0 auto;
  padding: 24px;
  min-height: 60vh;
}

.cart-main h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-family: 'Black Ops One', 'Lato', sans-serif;
}

#cart-items-container {
  margin-bottom: 32px;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid rgb(57, 57, 57);
  padding: 2rem 0;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 12px;
  background: #f7f7f7;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cart-item-desc {
  color: #555;
  font-size: 1rem;
  margin-bottom: 8px;
}

.cart-item-size {
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.cart-item-price {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.cart-item-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cart-item-qty-btn {
  background: #1f1e1e;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-item-qty-btn:hover {
  background: #333;
}

.cart-item-remove {
  background: none;
  color: #e53935;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 12px;
  text-decoration: underline;
}

#cart-summary {
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 24px;
  max-width: 400px;
  margin-left: auto;
}

.cart-summary-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: .9rem;
  font-size: 1.05rem;
}

.cart-summary-total {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
}

.cart-checkout-btn {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 1rem;
}
.cart-checkout-btn:hover {
  background: #232323;
}

.cart-empty-message {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin: 40px 0 24px 0;
}

.cart-continue-btn {
  display: inline-block;
  margin-top: 1rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.cart-continue-btn:hover {
  background: #000;
  color: #fff;
  border: 1px solid white;
}

.no-summary{
  display: none;
}
/* ----------------------------------------------------------------------------------- */



/* ----------------------------- WISHLIST PAGE----------------------- */
.wishlist-page-content {
 margin-left: 80px;
 padding: 0 80px;
 margin-bottom: 6rem;
}

.wishlist-main {
  padding: 2rem 1rem;
  min-height: 60vh;
  margin-top: 80px;
}

.wishlist-section h1 {
  font-family: 'Black Ops One', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

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

.wishlist-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1.5rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: opacity 0.5s;
}
.wishlist-card.dim {
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.5s;
}

.wishlist-shoe{
  position: relative;
  max-height: 450px;
}

.wishlist-card .wishlist-shoe img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
}

.wishlist-card .wishlist-heart {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  transition: fill 0.3s;
}
.wishlist-card .wishlist-heart.filled path {
  fill: #e63946;
  stroke: #e63946;
}
.wishlist-card .wishlist-heart path {
  fill: none;
  stroke: #e63946;
  stroke-width: 2;
}

.wishlist-card .wishlist-info {
  text-align: center;
}

.wishlist-card .wishlist-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.wishlist-card .wishlist-price {
  color: #222;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.wishlist-card .wishlist-size {
  color: #666;
  font-size: 0.95rem;
}

.wishlist-empty {
  display: none;
  text-align: center;
  color: #888;
  font-size: 1.2rem;
  margin-top: 4rem;
}
/* ------------------------------------------------------------------- */


/* ------------------------ SIGNUP PAGE-------------------------- */
.sign-up-container{
  background: url('Images/Nike bg/nike bg 3.jpg') ;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  margin-top: 60px;
  margin-left: 80px;
}

.sign-up-container .container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin-top: 100px; margin-bottom: 100px;
}

.sign-up-container h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.sign-up-container .form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.sign-up-container label {
  display: block;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.25rem;
}

.sign-up-container input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.sign-up-container input:focus {
  border-color: #f39c12;
}

.sign-up-container .error {
  color: #ff0000;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.sign-up-container button {
  width: 100%;
  padding: 0.75rem;
  background-color: #f39c12;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.sign-up-container button:hover {
  background-color: #e67e22;
}

.sign-up-container .login-link {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #333;
}
.sign-up-container .login-link a {
  color: #f39c12;
  text-decoration: none;
}
.sign-up-container .login-link a:hover {
  text-decoration: underline;
}

.sign-up-footer{
  margin-top: 0;
}
/* ---------------------------------------------------------------- */


/* ---------------------------------- LOGIN PAGE---------------------- */
.login-container {
  background: url('Images/Nike bg/nike bg 3.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  margin-top: 60px;
  margin-left: 80px;
}

.login-container .container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.login-container h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.login-container .form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.login-container label {
  display: block;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.25rem;
}

.login-container input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.login-container input:focus {
  border-color: #f39c12;
}

.login-container .error {
  color: #ff0000;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.login-container button {
  width: 100%;
  padding: 0.75rem;
  background-color: #f39c12;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.login-container button:hover {
  background-color: #e67e22;
}

.login-container .login-link {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #333;
}
.login-container .login-link a {
  color: #f39c12;
  text-decoration: none;
}
.login-container .login-link a:hover {
  text-decoration: underline;
}

.login-footer {
  margin-top: 0;
}
  
@media (max-width: 450px) {
   
}
/* ---------------------------------------------------------------------------- */

/* Media queries */
@media (max-width: 1470px){
  header .navbar{
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .navbar .shop-easy{
    justify-self: end;
  }

  nav.nav-controls ul {
    gap: 1.6vw;
  }


  /* HOME PAGE*/
  #home-page .shoe-wrapper{
    width: 600px;
  }

  #home-page .content h1{
    font-size: 110px;
  }

  #home-page .content h3{
    font-size: 35px;
  }
}

@media (max-width: 1300px){
  header .navbar #search-input{
    display: none;
  }
  header .navbar .search-bar{
    min-width: fit-content;
  }

  /* HOME PAGE*/
  #home-page .shoe-wrapper{
    width:500px;
  }

  #home-page .glow{
    width: 500px;
  }

  #home-page .content h1{
    font-size: 90px;
    margin-top: 120px;
  }

  #home-page .content h3{
    font-size: 30px;
  }

  #home-page .content .description{
    max-width: 350px;
    line-height: 1.8;
  }

  #home-page .content .buy-btn{
    margin-top: 35px;
  }

  #home-page .shoe-wrapper:hover{
    transform: scale(1);
  }

  /* FOOTER */
    .footer-container{
      padding: 0 30px;
    }

    .footer-column.logo{
      max-width: 150px;
    }

    .footer-column.newsletter{
      max-width: 300px;
    }

    .subscribe-box input{
      max-width: 194px;
    }
    .subscribe-box button{
      max-width: 105px;
    }

    .carousel .carousel-track .card{
      flex: 0 0 calc(33.33% - 20px);
    }

    /* ------COLLECTION PAGE----- */
   .filter-container .show-products-div{
      padding: 20px 12%;
    }
}

@media(max-width:1200px){
  /* ------COLLECTION PAGE----- */
    .filter-container .show-products-div{
      padding: 20px 10%;
    }
    .filter-container .show-products-btn{
      padding: 10px 80px;
    }
}

@media (max-width: 1091px){
  .home section, .about section, .collection-page-content section, .product-page-content section{
    margin-left: 40px;
  }
  .sidebar{
    display: none;
  }

  header{
    width: 100vw;
    left: 0;
    padding-right: 20px;
  }

  header .search-panel{
    left: 0;
    width: 100%; 
  }

  .navbar .nav-controls{
    display: none;
  }
  .navbar .shop-easy{
    justify-self: end;
    grid-column: 2/3;
  }

  .navbar .shop-easy .wishlist{
    display: none;
  }

  section.navbar{
    margin-right: 20px;
  }

  .navbar .mobile-logo{
    display: inline-block;
  }

  .shop-easy .menu{
    display: inline-block;
  }

  header .search-panel-overlay{
    width: 100%;
    margin-left: 0;
  }

  header .search-panel{
    width: 100vw;
  }

  /*HOME PAGE*/
  #home-page{
    flex-direction: column;
    max-height: fit-content;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    margin-left: 0;
    margin-right: 0;
  }

  #home-page .home-page-container::before{
    content: '';
    background-image: url("Images/nike background images/nike background image2.jpg");
    background-size: cover; /* or contain */
    background-repeat: no-repeat;
    width: 100%;
    z-index: -1;
    height: 600px;
    max-height: 600px;
    position: absolute;
    top: 70px; left: 0;
    opacity: .2;
  }
  #home-page .content h1{
    font-size: 110px;
    letter-spacing: 12px;
    margin-bottom: .1em;
    margin-top: 170px;
  }

  #home-page .content .description{
    max-width: 780px;
  }

  #home-page .shoe-wrapper{
    width: 700px;
    margin-top: 120px;
  }
  #home-page .glow{
    width: 700px;
  }

  #home-page .shoe-container{
    z-index: -1;
    margin-left: 80px;
  }
  #home-page .nike-shoe{
    margin-left: -180px;
  }

  #home-page .content .buy-btn{
    background-color: white;
    color: #000;
    font-weight: 500;
  }

  #photo-wall .photo-wall-container{
    gap: 20px;
  }

  /* VIDEO SECTION */
  #video-section .video-player{
    margin-left: 0px;
  }

  /* FOOTER */
  footer{
    margin-left: 0 !important;
    width: 100% !important;
  }

  #collection .shoe-grid{
    gap: 1.3rem;
  }


  /* ---------- COLLECTION PAGE----------------- */
  .collection-page-content{
    margin-top: 120px;
  }

  .filter-container .show-products-div{
    padding: 20px 10%;
  }
  .filter-container .show-products-btn{
    padding: 10px 60px;
  }

  #collection .shoe-text .price{
    margin-top: 20px;
  }


  /* ---------CONTACT PAGE------------------ */
  .contact-page-content section{
    margin-left: 40px;
  }
  .contact-page-content {
  margin-top: 0px;
  }
  .contact-banner {
    width: 100%;
    margin-left: 0px;
  }


  /* --------- PROCUCT PAGE -------------- */
  .product-page-content section {
    margin-left: 40px;
    margin-right: 40px;
  }

  .action-buttons {
    width: 100%;
  }

  .action-buttons .cart-and-wishlist{
    width: 100%;
  }

  .action-buttons .wishlist-btn {
    padding: .5rem 1.1rem;
  }


  /* ----------- CART PAGE -------------- */
  .cart-page-content {
    margin-left: 0;
    padding: 0 40px;
  }
  
  #cart-summary {
    max-width: 100%;
    margin-left: 0;
    margin-top: 32px;
  }

  /* ---------- WISHLIST PAGE----------- */
  .wishlist-page-content {
    margin-left: 0;
    padding: 0 40px;
  }

  /* ------------------ SIGN UP PAGE---------------- */
  .sign-up-container{
    margin-left: 0;
  }

  /* ---------- LOGIN PAGE--------------- */
  .login-container {
    margin-left: 0;
  }
}

@media(max-width: 992px){
  .footer-container {
    row-gap: 50px;
    margin-bottom: 50px;
  }

  .footer-column.newsletter {
    max-width: 50vw;
  }

  .subscribe-box{
    width: inherit;
  }
  .subscribe-box input {
    max-width: inherit;
  }
  .subscribe-box button {
    max-width: 150px;
}

/* ---------COLLECTION PAGE-------------- */
#collection .shoe-grid{
  grid-template-columns: repeat(2, 1fr);
}

/* -----------CONTACT PAGE----------- */
.form-and-faq{
  gap: 5rem;
}
}

@media (max-width: 945px){
  .action-buttons button{
    padding: 0.5rem 1.5rem;
  }

  .action-buttons .wishlist-btn{
   padding: .5rem .9rem;
  }
}

@media (max-width: 900px){
  /* ----------------- PRODUCT PAGE ---------------------- */
  .product-detail-container {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 2rem;
  }

  .product-images .main-image{
    min-width: 300px;
  }

  .product-images .thumbs {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .product-info {
   margin-top: 4rem;
   margin-left: 3%;
  }

  .product-info .product-price {
    margin-top: .7rem;
  }

  .size-button {
    padding: 8px 12px;
    font-size: 14px;
  }

  .action-buttons button {
    width: 100%;
    max-width: 150px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .action-buttons .wishlist-btn {
    padding: .5rem .7rem;
    max-width: 50px;
  }

  /* --cart pop up-- */
  .cart-pop-up{
    scale: 1;
    top: 60px; right: 42px;
  }


  /* --------------------------- SIGN UP PAGE------------------------ */
  .sign-up-container .container {
    width: 90%;
  }

  /* --------------------------- LOGIN PAGE---------------------------- */
  .login-container .container {
    width: 90%;
  }
}

@media (max-width: 850px){
  /* -----------COLLECTION PAGE------------ */
   .collection-header .mobile-sort-and-filter .mobile-filter-btn{
    display: flex;
    min-width: fit-content;
  }
  .collection-header .sort-and-filter{
    display: none;
  }

  /* -------CONTACT PAGE---------- */
  .contact-banner h2{
    font-size: 3.5rem;
  }

  .form-and-faq{
  gap: 4rem;
  }

  .headers-and-form{
    padding: 3rem 2rem;
  }
}

@media (max-width: 785px){
  .home section, .about section, .contact-page-content section{
    margin-left: 50px;
  }
  #home-page .content .description{
    max-width: 620px;
    line-height: 1.8;
  }

  #home-page .content h1{
    font-size: 90px;
    letter-spacing: 7px;
    margin-bottom: .2em;
    margin-top: 170px;
  }

  .navbar .menu-bar{
    width: 50vw;
  }

  #home-page .shoe-wrapper{
    width:500px;
  }
  #home-page .shoe-container{
    margin-bottom: 75px;
    margin-top: 75px;
  }

  #home-page .nike-shoe {
    margin-left: -100px;
}

  #home-page .glow{
    width: 500px;
  }

  .carousel .carousel-track .card {
    flex: 0 0 calc(50% - 30px);
  }

  .footer-bottom{
    row-gap: 1rem;
  }

  /* -------COLLECTION PAGE------- */
  .collection-page-content section{
    margin-left: 10px; margin-right: 10px;
  }
  #collection .shoe-grid {
    gap: .7rem;
  }
  #collection h1, .collection-header{
    padding-left: 15px; padding-right: 15px;
  }
  #collection h1{
    margin-bottom: 2rem;
  }

  /*--------CONTACT PAGE------  */
  .contact-page-content section{
    margin-left: 20px; margin-right: 20px;
  }


  /* --------------- CART PAGE -------------- */
  .cart-page-content {
    padding: 0 20px;
  }

  /* ---------- WISHLIST PAGE----------- */
  .wishlist-page-content {
    padding: 0 20px;
  }
}

@media (max-width:730px){
  #top-offers h2 {
    font-size: 30px;
    padding-bottom: 40px;
  }

  /* ------COLLECTION PAGE--------- */
  #collection h1{
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .shoe-text h3{
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
  }
  #collection h3 + p {
    font-size: 13px;
    margin-top: 6px;
    color: #bbb;
  }
  #collection .shoe-text .price {
    font-size: 18px;
  }
  #collection .shoe-text{
    margin-top: 10px;
  }

  /* -------CONTACT PAGE---------- */
  .contact-banner h2{
    font-size: 3rem;
  }

  .contact-banner{
    margin-bottom: 4rem;
  }

  .contact-page-content .contact-details h1 {
    font-size: 2.5rem;
  }

  .form-and-faq{
    flex-direction: column;
  }
  .form-and-faq .contact-form-container {
    width: 100%;
    flex: 1 1 100%;
 }
 .faq-container{
  width: 100%;
  flex: 1 1 100%;
 }

  .headers-and-form {
    padding: 3rem;
  }


  /* ------------ PRODUCT PAGE-------------- */
  /* -- cart pop up-- */
  .cart-pop-up {
    width: 100vw;
    max-width: 100vw;
    right: 0;
    left: 0;
    top: auto;
    bottom: 0px;
    border-radius: 18px 18px 0 0;
    transform: translateY(110%);
    padding: 1.2rem 1rem 1.2rem 1rem;
  }
  .cart-pop-up.cart-active {
    transform: translateY(0);
  }

  .cart-pop-up .cart-pop-up-product .image-div {
    width: 100px;
    max-height: 120px;
  }
}

@media (max-width: 680px){
  #home-page .content h1{
    font-size: 80px;
    margin-left: 10px;
    margin-right: 10px;
  }
  #home-page .content h3{
    font-size: 25px;
  }
  #home-page .content .description {
    max-width: 500px;
  }

  #home-page .shoe-wrapper {
    width: 450px;
  }
  #home-page .glow {
    width: 450px;
  }

  .menu-nav-controls ul li a{
    padding-right: .7rem;
  }
  .navbar .menu-bar .menu-shortcuts a{
    padding-right: .7rem;
  }

  #top-offers .carousel .carousel-btn{
    font-size: 1.5rem;
    padding: 0.3rem .8rem;
  }


    /* SEARCH PANEL */
    header .search-panel .search-panel-items {
      grid-template-columns: 4fr 1fr;
      margin-left: 30px;
      column-gap: 15px;
   }

   .search-panel .pop-search-terms{
    grid-column: 1/span 2;
    margin-left: 30px;
  }

  header .search-panel .search-panel-logo img, header .search-panel .search-panel-logo{
    display: none;
  }

  /* -----------PRODUCT PAGE ------------ */
  .product-info {
    margin-top: 2.5rem;
    margin-left: 1%;
  }

  .product-info h1{
    font-size: 1.5rem;
  }

  .product-info .product-price{
    margin-top: .4rem;
    font-size: 1.3rem;
  }

  .product-info h3 {
    margin-top: 3rem;
    margin-bottom: 0.2rem;
  }
}

@media(max-width:640px){
  .footer-container{
    flex-direction: column;
  }
  .footer-container {
    row-gap: 30px;
  }
  .footer-column.newsletter{
    max-width: 70vw;
  }

  /* ------COLLECTION PAGE------ */
  .mobile-price-filter .slider-container {
    width: 100%;
  }


  /* --------------- CART PAGE -------------- */
  .cart-page-content {
    padding: 0 10px;
  }

  .cart-main h1 {
    font-size: 1.7rem;
    margin-bottom: 9px;
  }

  .cart-item-title {
    font-size: 1rem;
  }

  .cart-item-desc, .cart-item-size, .cart-item-price {
    font-size: 0.95rem;
  }

  .cart-checkout-btn {
    font-size: 1rem;
    padding: 10px 0;
  }

  .cart-item {
    padding-bottom: 4rem; padding-top: 3rem;
    position: relative;
  }

  .cart-item-qty-controls{
    position: absolute;
    left: 0; top: 208px;
    gap: 6px;
  } 
  .cart-item-remove{
    margin-left: 9px;
  }

  #cart-summary{
    margin-top: 3rem;
  }

  /* ------------- WISHLIST PAGE------------- */
  .wishlist-main h1 {
    font-size: 1.7rem;
  }
}

@media(max-width:550px){
  /* ---------- HOME PAGE---------- */
  #home-page .shoe-wrapper {
    width: 400px;
  }
  #home-page .glow {
    width: 400px;
  }


  /* ------COLLECTION PAGE------ */
  .mobile-filter-container .show-products-btn{
    padding: 10px 70px;
  }
  .mobile-filter-container .mobile-show-products-div{
    gap: 15px;
  }

  #collection h1{
    font-size: 1.25rem;
    margin-bottom: 1.3rem;
  }

  .collection-header .products-number {
    font-size: 1.05rem;
  }

  /* -------CONTACT PAGE---------- */
  .contact-page-content section{
    margin-left: 10px; margin-right: 10px;
  }
  .contact-banner h2{
    font-size: 2.5rem;
  }

  .contact-page-content .contact-details h1 {
    font-size: 2rem;
  }
  .contact-details .office h3{
    font-size: 1.1rem;
  }


  /* -----------PRODUCT PAGE--------------- */
  .product-page-content .product-detail-container {
    margin-left: 20px;
    margin-right: 20px;
  }

  .product-images .thumb {
    max-width: 70px;
    max-height: 70px;
  }

  .action-buttons button {
    width: 100%;
    max-width: 130px;
    padding: .9rem 1.3rem;
    font-size: 1rem;
  }

  .action-buttons .wishlist-btn {
    padding: .5rem .7rem;
    max-width: 50px;
  }
}

@media (max-width: 520px){
  #home-page .content h1{
    font-size: 60px;
  }
  #home-page .content h3{
    font-size: 22px;
  }

  #home-page .content .description {
    max-width: 430px;
  }

  .navbar .mobile-logo{
    left: 15px;
  }

  .navbar .menu-bar{
    width: 52vw;
  }
}

@media(max-width:480px){
  #home-page .shoe-wrapper {
    width: 350px;
  }
  #home-page .glow {
    width: 350px;
  }
  #home-page .shoe-container{
    padding-bottom: 2rem;
  }
  #home-page .glow{
    top: 83%;
  }
}

@media (max-width: 450px){
  .carousel .carousel-track .card {
    flex: 0 0 100%;
  }

  section#top-offers{
    margin-left: 30px;
  }

  #home-page .content .description {
    max-width: 380px;
  }

  #home-page .shoe-wrapper {
    width: 320px;
  }
  #home-page .glow {
    width: 320px;
  }

  #photo-wall .photo-wall-container .photo-wall-item{
    min-width: calc(300px - 50px);
  }
  /* footer */
  .footer-container {
    padding: 0 30px; padding-left: 10px;
  }

  .footer-column.newsletter{
    max-width: 100vw;
  }


  /* -----COLECTION PAGE----- */
  .mobile-price-filter .value-display {
    font-size: 1rem;
  }

  .mobile-filter-container .show-products-btn{
    padding: 10px 50px;
  }

  #collection h1{
    font-size: 1.15rem;
  }

  .collection-header .products-number {
    font-size: 1rem;
  }


  /* -----------CONTACT PAGE------------ */
  .contact-page-content section{
    margin-left: 0px; margin-right: 0px;
  }


  /* --------------- PRODUCT PAGE -------------- */
  .product-page-content .product-detail-container {
    margin-left: 0px;
    margin-right: 0px;
    background: #000;
  }

  .product-detail .product-detail-container.product-not-found{
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1.1rem;
  }

  .size-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-images .thumb {
    max-width: 65px;
    max-height: 65px;
  }

  .action-buttons{
    flex-direction: column;
  }

  .action-buttons button{
    max-width: none;
    font-size: 1.1rem;
    padding: 1rem 1.3rem;
  }

  .action-buttons .cart-and-wishlist{
    margin-top: .5rem;
  }

  /* ----------------SIGNUP PAGE------------------------- */
  .sign-up-container .container {
    padding: 1.5rem;
    margin: 1rem;
  }

  .sign-up-container h2 {
    font-size: 1.25rem;
  }

  /* -------------------- LOGIN PAGE ------------------- */
  .login-container .container {
    padding: 1.5rem;
    margin: 1rem;
  }
  .login-container h2 {
    font-size: 1.25rem;
  }
}

@media(max-width:420px){
  /* --------COLLECTION PAGE------ */
  #collection h1{
    font-size: 1.1rem;
  }

  /* -------CONTACT PAGE------- */
  .headers-and-form {
    padding: 3rem 2.5rem;
  }


  /* ---------- CART PAGE ----------- */
  .cart-item {
    padding-bottom: 3.5rem;
  }
}

@media (max-width: 415px){
  #home-page .content h1{
    font-size: 50px;
    margin-left: 8px; margin-right: 8px;
  }
  #home-page .content h3{
    font-size: 20px;
  }
  #home-page .content .description {
    max-width: 330px;
  }

  section.navbar{
    margin-left: -10px;
  }

  .navbar .mobile-logo{
    left: 12px;
  }

  .navbar .shop-easy {
    gap: 7px;
  }

  .menu-nav-controls ul li a{
    padding-left: 1.5rem;
  }
  .navbar .menu-bar .menu-shortcuts a{
    padding-left: 1.5rem;
  }

  #top-offers h2 {
    font-size: 25px;
    padding-bottom: 27px;
  }

  #photo-wall .photo-wall-container .photo-wall-item{
    min-width: calc(350px - 50px);
  }

  /* footer */
  .footer-column.newsletter {
    max-width: 80vw;
  }

  .subscribe-box{
    max-width: inherit;
  }
  .subscribe-box input {
    width: calc(70vw - 85px);
  }
  .subscribe-box button {
    max-width: 90px;
  }

  .subscribe-box button {
    padding: 6px 10px;
    font-weight: 600;
    font-size: 16px;
  }
}

@media(max-width: 400px){
  #home-page .shoe-wrapper {
    width: 290px;
  }
  #home-page .glow {
    width: 290px;
  }

  #photo-wall .photo-wall-container .photo-wall-item{
    min-width: calc(325px - 50px);
  }

  /* ---------CONTACT PAGE--------------- */
  .contact-page-content .contact-form-container h1 {
    font-size: 24px;
  }
  .faq-container h2{
    font-size: 24px;
  }

   /* ---------- CART PAGE ----------- */
  .cart-item {
    padding-bottom: 3rem;
  }
}

@media(max-width:370px){
  #home-page .shoe-wrapper {
    width: 250px;
  }
  #home-page .glow {
    width: 250px;
    left: -8%;
  }
  #home-page .nike-shoe{
    margin-left: -70px;
  }
  #home-page .shoe-container{
    margin-left: 50px;
  }

  .carousel .carousel-track .card {
    min-width: 200px;
  }

  #photo-wall .photo-wall-container .photo-wall-item{
    min-width: calc(300px - 50px);
  }

  header .search-panel .search-panel-items {
    margin-left: 15px;
    column-gap: 10px;
 }

 .search-panel .pop-search-terms{
    margin-left: 15px;
  }


  /* ------- CONTACT PAGE----------- */
  .contact-page-content section{
    margin-right: 10px;
  }


  /* --------collection page------ */
  #collection .shoe-grid {
    gap: .5rem;
  }

  
  /* -------PRODUCT PAGE --------- */
  .product-images .thumbs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .product-images .thumb {
    max-width: 80px;
    max-height: 80px;
  }

}

@media (max-width: 350px){
  #home-page .content h1{
    font-size: 43px;
  }
  #home-page .content h3{
    font-size: 18px;
  }
  #home-page .content .description {
    max-width: 310px;
  }

  #home-page .shoe-wrapper {
    width: 230px;
  }
  #home-page .glow {
    width: 200px;
  }

  #photo-wall .photo-wall-container .photo-wall-item{
    min-width: calc(280px - 50px);
  }

  /* ------COLLECTION PAGE------ */
  .mobile-filter-container .show-products-btn{
    padding: 10px 40px;
  }
  .mobile-filter-container .mobile-show-products-div{
    gap: 10px;
  }

  .collection-header .products-number {
    font-size: .9rem;;
  }


  /* ---------- PRODUCT PAGE ---------------- */
  .product-images .main-image {
    min-width: 280px;
  }
}

@media (max-width: 340px){
  /* ---------- CART PAGE ----------- */
  .cart-item {
    padding-bottom: 1rem;
  }
}

