* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.universal {
  width: 100%;
  height: 100%;
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: white;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.logo {
  font-size: 1.5rem;
}

/* Center nav links */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.nav-links a {
  background-image: linear-gradient(120deg, #1e3c72, #800000);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease-in-out infinite;
  text-decoration: none;
  font-weight: 500;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  transform: scale(1.1);
  filter: blur(0) brightness(1.2);
}

.nav-links:hover a {
  filter: blur(2px) brightness(0.7);
}

.nav-links a:hover {
  filter: blur(0) brightness(1.2);
}

/* Gradient animation keyframes */
@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

/* Right side icons and hamburger */
.nav-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.2rem;
}

/* Gradient animation keyframes (shared) */
@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

.navbar .logo {
  background-image: linear-gradient(120deg, #1e3c72, #800000);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease-in-out infinite;
  font-weight: bold;
  margin: 0;
}

.nav-icons i {
  background-image: linear-gradient(120deg, #1e3c72, #800000);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease-in-out infinite;
  font-size: 1.2rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Apply hover to span so all icons pop */
.nav-icons span:hover i {
  transform: scale(1.2);
  filter: brightness(1.3);
}

/* Hamburger (hidden by default) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 1rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  display: block;
  background-image: linear-gradient(120deg, #1e3c72, #800000);
  background-size: 200% auto;
  animation: gradientMove 4s ease-in-out infinite;
  border-radius: 3px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect for hamburger */
.hamburger:hover span {
  transform: scale(1.1);
  filter: brightness(1.3);
}

/* Hidden checkbox */
.menu-toggle {
  display: none;
}

.home-page {
  width: 100%;
  height: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-left: 30px;
  padding-bottom: 20px;
  text-align: left;
}

.home-left h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.home-left h1 {
  font-size: 35px;
}

.home-left h1,
.home-left h3,
.shop-page h1,
.review-page h1,
.about-page h2,
.growth-card h3,
.support h2,
.contact-left h2 {
  background-image: linear-gradient(120deg, #1e3c72, #800000);
  /* deep navy to maroon */
  background-size: 200% auto;
  /* extra width for smooth shifting */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease-in-out infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

.home-left p {
  font-size: 18px;
  margin-top: 10px;
}

.home-left button {
  width: 200px;
  padding: 5px;
  margin-top: 20px;

}

.home-left button {
  background-image: linear-gradient(120deg, #1e3c72, #800000);
  background-size: 200% auto;
  color: #fff;
  /* white text for contrast */
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  animation: gradientMove 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.home-left button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

.home-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-img {
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

.home-img img {
  width: 70%;
  height: 70%;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.home-img img {
  animation: sway 3s ease-in-out infinite;
  transform-origin: top center;
  /* keep top stable, move bottom */
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  border-radius: 10px;
  /* optional */
}

@keyframes sway {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(3deg);
  }

  75% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.shop-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mens-section,
.womens-section,
.boys-section,
.girls-section {
  max-width: 1200px;
  margin: 20PX;
  height: auto;

}

.mens-section h1,
.womens-section h1,
.boys-section h1,
.girls-section h1 {
  text-align: center;
  color: #333;
  margin-bottom: 50px;
}

.collection-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 60px;
}

.item {
  width: 200PX;
  background-color: #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.item p {
  margin: 8px 0;
  color: #555;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  transition: bottom 0.3s ease;
}

.item:hover .buttons {
  bottom: 0;
}

.buttons button {
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  background-color: #333;
  color: white;
  cursor: pointer;
  font-size: 14px;
}

.buttons button:hover {
  background-color: #555;
}

.review-page {
  width: 100%;
  height: auto;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.review-page h1 {
  text-align: center;
  color: #333;
  margin-bottom: 0px;
}

.carousel {
  margin: 30px;
}

.carousel p,
.carousel h2 {
  margin: 10px;
  font-weight: bold;
}

.article {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@layer base, demo;
@import url(https://fonts.bunny.net/css?family=abel:400);

@layer demo {
  .carousel {
    --items: 6;
    --carousel-duration: 40s;

    @media (width > 600px) {
      --carousel-duration: 30s;
    }

    --carousel-width: min(80vw,
      1200px);
    /* note - it will "break" if it gets too wide and there aren't enough items */
    --carousel-item-width: 280px;
    --carousel-item-height: 450px;
    --carousel-item-gap: 2rem;

    --clr-cta: rgb(0, 132, 209);

    position: relative;
    width: var(--carousel-width);
    height: var(--carousel-item-height);
    overflow: clip;

    &[mask] {
      /* fade out on sides */
      mask-image: linear-gradient(to right,
          transparent,
          black 10% 90%,
          transparent);
    }

    &[reverse]>article {
      animation-direction: reverse;
    }

    /* hover pauses animation */
    &:hover>article {
      animation-play-state: paused;
    }
  }

  .carousel>article {
    position: absolute;
    top: 0;
    left: calc(100% + var(--carousel-item-gap));
    width: var(--carousel-item-width);
    height: var(--carousel-item-height);
    display: grid;
    grid-template-rows: 200px auto 1fr auto;
    gap: 0.25rem;
    border: 1px solid light-dark(rgba(0 0 0 / 0.25), rgba(255 255 255 / 0.15));

    padding-block-end: 1rem;
    border-radius: 10px;
    background: light-dark(white, rgba(255 255 255 / 0.05));
    color: light-dark(rgb(49, 65, 88), white);

    /* animation */
    will-change: transform;
    animation-name: marquee;
    animation-duration: var(--carousel-duration);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-delay: calc(var(--carousel-duration) / var(--items) * 1 * var(--i) * -1);

    &:nth-child(1) {
      --i: 0;
    }

    &:nth-child(2) {
      --i: 1;
    }

    &:nth-child(3) {
      --i: 2;
    }

    &:nth-child(4) {
      --i: 3;
    }

    &:nth-child(5) {
      --i: 4;
    }

    &:nth-child(6) {
      --i: 5;
    }

    &:nth-child(7) {
      --i: 6;
    }

    &:nth-child(8) {
      --i: 7;
    }
  }

  .carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 10px 10px 0 0;
  }

  .carousel>article>*:not(img) {
    padding: 0 1rem;
  }

  .carousel>article>div {
    grid-row: span 2;
    display: grid;
    grid-template-rows: subgrid;
    font-size: 0.8rem;
  }

  .carousel>article h2 {
    font-size: 1.2rem;
    font-weight: 300;
    padding-block: 0.75rem 0.25rem;
    margin: 0;
  }

  .carousel>article p {
    margin: 0px;
  }

  .carousel>article a {
    text-decoration: none;
    text-transform: lowercase;
    border: 1px solid var(--clr-cta);
    color: light-dark(var(--clr-cta), white);
    border-radius: 3px;
    padding: 0.25rem 0.5rem;
    place-self: start;
    transition: 150ms ease-in-out;

    &:hover,
    &:focus-visible {
      background-color: var(--clr-cta);
      color: white;
      outline: none;
    }
  }

  @keyframes marquee {
    100% {
      transform: translateX(calc((var(--items) * (var(--carousel-item-width) + var(--carousel-item-gap))) * -1));
    }
  }
}

.about-page {
  width: 100%;
  height: auto;
  margin-top: 100px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

.about-page h2 {
  text-align: center;
  font-size: 30px;

}

section {
  padding: 50px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* About Us */
.about {
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  padding: 40px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-flex {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  text-align: start;
  margin-bottom: 20px;
}

.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;

  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Services */
.services {
  background-color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  border-radius: 15px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 60px;
  margin-bottom: 15px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Support */
.support {
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);

  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.support h2 {
  margin-bottom: 20px;

}

.support-buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  background: gray;
  color: #fff;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: lightgray;
  color: #333;
}

/* Growth Section */
.growth {
  background: #fff;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}

.growth-card {
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.growth-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  height: 600px;

}

.contact-left {
  width: 40%;
}

.contact-left h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-right {
  width: 50%;
  background: url('./images/contact\ us.jpg') center/cover no-repeat;
  padding: 20px;
  border-radius: 20px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
}

.contact-right label {
  font-weight: bold;
  margin-top: 10px;
  color: white;
}

.contact-right input,
.contact-right textarea {
  background: transparent;
  border: 0px;
  border-bottom: 2px solid white;
  color: white;
  padding: 10px;
  border-radius: 0px;
  outline: none;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.contact-right textarea {
  height: 100px;
}

.contact-right button {
  background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  border: none;
  padding: 10px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 16px;
  cursor: pointer;

}

.end {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  border-top: 2px solid black;
  padding: 20px;

}

@media screen and (max-width:768px) {

  /* Hide center nav on mobile */
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    z-index: 100;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  }

  /* Show nav when toggled */
  .menu-toggle:checked~.nav-links {
    max-height: 300px;
    /* adjust to fit menu items */
    opacity: 1;
  }

  /* Show hamburger only on mobile */
  .hamburger {
    display: flex;
  }

  /* Disable blur on mobile/tablet menu */
  .nav-links:hover a {
    filter: none !important;
  }

  .nav-links a:hover {
    filter: brightness(1.2);
    transform: none;
  }

  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-img {
    order: -1;
  }

  .home-page {
    height: 600px;
  }

  .home-left h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .home-left h1 {
    font-size: 25px;
  }

  .home-left p {
    font-size: 13px;
    margin-top: 10px;
  }

  .home-left button {
    width: 180px;
    padding: 5px;
    margin-top: 20px;

  }

  .home-left button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  .home-img img {
    width: 80%;
    height: 80%;
    margin-bottom: 20px;
    object-fit: contain;
  }

  .mens-section h1,
  .womens-section h1,
  .boys-section h1,
  .girls-section h1 {
    font-size: 25px;
  }

  .item {
    width: 150px;
    padding: 10px;
  }

  .review-page h1 {
    font-size: 25px;
  }

  .carousel {
    --carousel-item-width: 300px;
    --carousel-item-height: 400px;
  }

  .carousel>article {
    width: var(--carousel-item-width);
    height: var(--carousel-item-height);
  }

  .carousel img {
    height: 100%;
  }

  .carousel>article h2 {
    font-size: 1rem;
  }

  .carousel>article p {
    font-size: 0.8rem;
  }

  .carousel>article a {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
  }

  .carousel>article>*:not(img) {
    padding: 0 0.5rem;
  }

  .about-page h2 {
    font-size: 18px;
  }

  .services h2,
  .support h2,
  .growth h2 {
    font-size: 25px;
  }


  .about-img img {
    width: 400px;
    height: 300px;

  }

  .about-text {
    text-align: center;
    align-items: center;
  }

  .about-text h2 {
    font-size: 25px;
    text-align: center;
  }

  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .service-card img {
    width: 50px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 14px;
    margin-top: 10px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .growth-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .growth-card h3 {
    font-size: 1.5rem;
  }

  .growth-card p {
    font-size: 14px;
  }

  .contact-left h2 {
    font-size: 25px;
  }

  .contact-left p {
    font-size: 16px;
  }

  .contact-right form {
    width: 300px;
  }

  .contact-right input {
    width: 100%;
  }

  .contact-right label {
    font-size: 14px;
  }

  .contact-right button {

    padding: 10px;
    font-size: 15px;
  }

  .end {
    height: 80px;
    padding: 10px;
    font-size: 14px;
  }

}

/* Responsive styles for smaller screens */
@media screen and (max-width: 500px) {

  .nav-bar {
    width: 100%;
    padding: 10px;
  }

  .nav-bar h1 {
    font-size: 18px;
  }

  .menu-toggle {
    height: 18px;
  }

  .home-page {
    width: 100%;
    height: 530px;
  }

  .home-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home-left h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .home-left h1 {
    font-size: 20px;
  }

  .home-left p {
    font-size: 10px;
    margin-top: 10px;
  }

  .home-left button {
    width: 120px;
    padding: 5px;
    margin-top: 20px;
    font-size: 12px;

  }

  .home-img img {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    object-fit: contain;
  }

  .mens-section h1,
  .womens-section h1,
  .boys-section h1,
  .girls-section h1 {
    font-size: 20px;
  }

  .collection-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    flex-wrap: nowrap;
    width: 450px;
  }

  .item {
    width: 150px;
    padding: 10px;
  }

  .mens-section,
  .womens-section,
  .girls-section,
  .boys-section {
    width: 100%;
    height: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

  }


  .collection-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
  }

  .collection-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
  }

  .item {
    flex: 0 0 auto;
    /* Prevent shrinking */
    width: 130px;
    /* Slightly smaller for mobile */
    height: 200px;
    /* Adjust height for mobile */
  }

  .item p {
    font-size: 10px;
    margin: 5px 0;
  }

  .item button {
    font-size: 10px;
    padding: 5px;
  }

  .item img {
    height: 130px;
  }

  .mens-section h1,
  .womens-section h1,
  .boys-section h1,
  .girls-section h1 {
    margin-bottom: 20px;
  }

  .review-page {
    width: 500px;
  }

  .carousel {
    --carousel-item-width: 250px;
    --carousel-item-height: 350px;
  }

  .carousel>article {
    width: var(--carousel-item-width);
    height: var(--carousel-item-height);
  }

  .carousel img {
    height: 100%;
  }

  .carousel>article h2 {
    font-size: 0.8rem;
  }

  .carousel>article p {
    font-size: 0.5rem;
  }

  .carousel>article a {
    font-size: 0.5rem;
    padding: 0.25rem 0.5rem;
  }

  .carousel>article>*:not(img) {
    padding: 0 0.5rem;
  }

  .about-page {
    width: 500px;

  }

  .about-img img {
    width: 300px;
    height: 300px;

  }

  .about-text {
    text-align: center;
    align-items: center;
  }

  .about-text h2 {
    font-size: 20px;
    text-align: center;
  }

  .about-text p {
    font-size: 10px;
    margin-top: 10px;
  }

  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    align-items: center;
    text-align: center;
  }

  .services h2,
  .support h2,
  .growth h2 {
    font-size: 20px;
  }

  .services p,
  .support p,
  .growth p {
    font-size: 10px;
    margin-top: 10px;
  }

  .support p {
    font-size: 10px;
    margin-top: 10px;
  }

  .contact-section {
    height: auto;
    width: 500px;
    flex-direction: column;
  }

  .contact-left h2 {
    font-size: 20px;
  }

  .contact-left p {
    font-size: 10px;
  }

  .contact-left span {
    font-size: 10px;
  }

  .contact-left {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .contact-right {
    margin: 20px;
    width: 100%;
  }

  .contact-right form {

    width: 100%;
    height: 300px;
  }

  .contact-right input {
    width: 100%
  }

  .contact-right textarea {
    width: 100%;
    height: 80px;
    margin-top: 10px;
    padding: 10px;
    font-size: 12px;
  }

  .contact-right input::placeholder,
  .contact-right textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
  }

  .contact-right label {
    font-size: 10px;
  }

  .contact-right button {
    width: 100%;
    padding: 10px;
    font-size: 10px;
  }

  .end {
    height: 80px;
    padding: 10px;
    font-size: 12px;
  }

  .home-page,
  .about-page,
  .review-page,
  .shop-page,
  .contact-section {
    width: 100%;
  }


}