@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --primary-color: #37617a;
  --primary-color-dark: #0d1a20;
  --secondary-color: #fb923c;
  --white: #ffffff;
}

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

body {
  font-family: "Poppins", sans-serif;
  background-image: linear-gradient(to right bottom, #7aa7ba, #0d1a20);
  background-attachment: fixed;
  /* Fix background for smoother scroll feel */
  transition: background-image 0.5s ease;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  max-width: 1400px;
  margin: auto;
  padding: 1rem 4rem;
  display: flex;
  flex-direction: column;
}

.nav {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  background: rgba(13, 26, 32, 0.1);
  /* Very subtle primary dark tint */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.nav__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  cursor: pointer;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links li a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.3s;
  opacity: 0.7;
}

.nav__links li a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.nav__icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--white);
}

.shopping__cart {
  height: 45px;
  width: 45px;
  display: grid;
  place-content: center;
  border-radius: 100%;
  font-size: 1.2rem;
  color: var(--primary-color-dark);
  background-color: var(--white);
  cursor: pointer;
  transition: 0.3s;
}

.shopping__cart:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.menu__toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.content {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 8rem;
  /* Space for at-bottom arrivals */
}

.header {
  position: absolute;
  top:20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  width: 100%;
  text-align: center;
}

.header h1 {
  font-size: 15rem;
  font-weight: 900;
  color: var(--white);
  opacity: 0.05;
  text-transform: uppercase;
  letter-spacing: 20px;
  transition: transform 0.1s ease-out;
  /* Smooth parallax */
}

.content__left {
  padding-right: 4rem;
}

.featured__info h4 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  letter-spacing: 5px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.featured__info h2 {
  font-size: 6rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.featured__info p {
  font-size: 1.15rem;
  color: var(--white);
  opacity: 0.8;
  line-height: 1.8;
  max-width: 550px;
  margin-bottom: 3.5rem;
}

.buy__now {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color-dark);
  background-color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.buy__now:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.content__right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image {
  width: 100%;
  animation: shoe-animation 4s ease-in-out infinite;
  display: flex;
  justify-content: center;
  transition: transform 0.1s ease-out, filter 0.5s ease;
  /* Smooth parallax */
}

.image img {
  width: 100%;
  max-width: 1000px;
  transform: rotate(-25deg);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.5s ease;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

@keyframes shoe-animation {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(3deg);
  }
}

.color__selectors {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
}

.color {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s;
  position: relative;
}

.color::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 42px;
  height: 42px;
  border: 2px solid var(--white);
  border-radius: 50%;
  transition: 0.3s;
}

.color.active::after {
  transform: translate(-50%, -50%) scale(1);
}

.color:hover {
  transform: scale(1.2);
}

.featured__item {
  position: absolute;
  left: -2rem;
  top: 60%;
  transform: rotate(-90deg);
  transform-origin: left top;
}

.featured__item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.featured__item p {
  font-size: 0.7rem;
  color: var(--white);
  opacity: 0.5;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.socials {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.socials span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.6;
}

.socials span:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.slides {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.slides span {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.5;
}

@media (max-width: 1200px) {
  .header h1 {
    font-size: 10rem;
  }

  .featured__info h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {

  .container,
  .nav__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 4rem;
  }

  .content__left {
    padding-right: 0;
    order: 2;
  }

  .content__right {
    order: 1;
  }

  .featured__info p {
    margin-left: auto;
    margin-right: auto;
  }

  .header h1 {
    font-size: 8rem;
  }

  .featured__item {
    display: none;
  }
}

/* Integrated Arrivals Gallery */
.arrivals__horizontal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  top: 79%;
}

.trending__title {
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  position: relative;
}

.trending__title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.carousel__viewport {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
}

.arrivals__grid {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.arrival__card {
  min-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1rem;
  position: relative;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.arrival__card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.arrival__image {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrival__image img {
  width: 140%;
  transform: rotate(-15deg);
  transition: 0.4s;
}

.arrival__card:hover .arrival__image img {
  transform: rotate(-5deg) scale(1.1);
}

.arrival__info {
  display: flex;
  flex-direction: column;
}

.arrival__info h3 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.arrival__info p {
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-weight: 500;
}

.add__to__cart {
  width: 30px;
  height: 30px;
  background: var(--white);
  color: var(--primary-color-dark);
  border: none;
  border-radius: 8px;
  display: grid;
  place-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 130%;
}

.add__to__cart:hover {
  background: var(--secondary-color);
  color: var(--white);
}

@media (max-width: 992px) {
  .content {
    padding-bottom: 2rem;
  }

  .arrivals__horizontal {
    position: static;
    margin-top: 3rem;
  }

  .arrivals__grid {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .menu__toggle {
    display: block;
    color: var(--white);
  }

  .header h1 {
    font-size: 5rem;
  }

  .featured__info h2 {
    font-size: 2.5rem;
  }

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

/* --- Brand Story Section (Outside Container) --- */
.brand__story {
  width: 100%;
  padding: 8rem 4rem;

  margin-top: 4rem;
}

.brand__content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 6rem;
}

.brand__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.brand__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.brand__image:hover img {
  transform: scale(1.08);
}

.brand__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--secondary-color);
  letter-spacing: 6px;
  font-weight: 600;
  text-transform: uppercase;
}

.section__title {
  font-size: 4.5rem;
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand__description {
  font-size: 1.2rem;
  color: var(--white);
  opacity: 0.7;
  line-height: 1.8;
}

.brand__quote {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--secondary-color);
  padding-left: 2rem;
  border-left: 5px solid var(--secondary-color);
  margin-top: 2rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.9;
}

/* Responsive updates for full-width brand section */
@media (max-width: 1200px) {
  .section__title {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .brand__story {
    padding: 6rem 2rem;
  }

  .brand__content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .brand__info {
    align-items: center;
  }

  .brand__quote {
    border-left: none;
    border-top: 5px solid var(--secondary-color);
    padding-left: 0;
    padding-top: 2rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .section__title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .brand__story {
    padding: 4rem 1.5rem;
  }

  .section__title {
    font-size: 2.5rem;
  }

  .brand__quote {
    font-size: 1.4rem;
  }
}

/* --- New Arrivals Section (2x3 Grid) --- */
.new__arrivals {
  width: 100%;
  padding: 8rem 0;
  background: transparent;
}

.arrivals__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.arrivals__header {
  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.product__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.product__card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.product__image {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.product__image img {
  width: 90%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.product__card:hover .product__image img {
  transform: scale(1.1) rotate(-5deg);
}

.product__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.product__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product__category {
  font-size: 0.8rem;
  color: var(--secondary-color);
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.8;
}

.product__name {
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
}

.product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.product__price {
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
}

.add__btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: none;
  background: var(--white);
  color: var(--primary-color-dark);
  font-size: 1.5rem;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.add__btn:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: scale(1.1);
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
  .arrivals__container {
    padding: 0 2rem;
  }

  .arrivals__2x3__grid {
    gap: 2rem;
  }

  .product__name {
    font-size: 1.5rem;
  }
}

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

  .new__arrivals {
    padding: 5rem 0;
  }

  .arrivals__header {
    margin-bottom: 3rem;
  }
}

/* --- New Arrivals Section (3x2 Grid) --- */
.new__arrivals {
  width: 100%;
  padding: 8rem 0;
  background: transparent;
}

.arrivals__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.arrivals__header {
  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.product__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.product__card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.product__image {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.product__image img {
  width: 90%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.product__card:hover .product__image img {
  transform: scale(1.1) rotate(-5deg);
}

.product__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.product__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product__category {
  font-size: 0.8rem;
  color: var(--secondary-color);
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.8;
}

.product__name {
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
}

.product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.product__price {
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
}

.add__btn {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  border: none;
  background: var(--white);
  color: var(--primary-color-dark);
  font-size: 1.3rem;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.add__btn:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: scale(1.1);
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
  .arrivals__3x2__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .arrivals__container {
    padding: 0 2rem;
  }
}

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

  .new__arrivals {
    padding: 5rem 0;
  }

  .arrivals__header {
    margin-bottom: 3rem;
  }
}

/* --- Sale Section --- */
.sale {
  width: 100%;
  padding: 10rem 0;
  background: linear-gradient(135deg, rgba(55, 97, 122, 0.1), rgba(251, 146, 60, 0.1));
  position: relative;
  overflow: hidden;
}

.sale__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.sale__content {
  z-index: 2;
}

.sale__description {
  font-size: 1.2rem;
  color: var(--white);
  opacity: 0.8;
  line-height: 1.8;
  margin: 2rem 0;
  max-width: 500px;
}

.sale_timer {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.timer__block {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  min-width: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer__block span {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
}

.timer__block small {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  opacity: 0.7;
}

.sale__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sale__image img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.glow__effect {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--secondary-color);
  filter: blur(150px);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 1;
}

/* --- Contact Section --- */
.contact {
  padding: 10rem 0;
  background: transparent;
}

.contact__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.contact__header {
  text-align: center;
  margin-bottom: 5rem;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.info__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.info__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.info__item i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.info__item h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info__item p {
  color: var(--white);
  opacity: 0.6;
  font-size: 0.9rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 4rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.input__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact__form input,
.contact__form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  border-radius: 12px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: 0.3s;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.1);
}

/* --- Main Footer --- */
.main__footer {
  background: #050a0c;
  padding: 8rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__col p {
  color: var(--white);
  opacity: 0.6;
  line-height: 1.8;
}

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

.footer__socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: grid;
  place-content: center;
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}

.footer__socials a:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

.footer__col h4 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__links a {
  color: var(--white);
  opacity: 0.6;
  text-decoration: none;
  transition: 0.3s;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer__subscribe {
  display: flex;
  gap: 0.5rem;
}

.footer__subscribe input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  color: var(--white);
}

.footer__subscribe button {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 0 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.footer__subscribe button:hover {
  background: var(--white);
  color: var(--primary-color-dark);
}

.footer__bottom {
  max-width: 1400px;
  margin: 5rem auto 0;
  padding: 2rem 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer__bottom p {
  color: var(--white);
  opacity: 0.4;
  font-size: 0.9rem;
}

/* Responsive for new sections */
@media (max-width: 992px) {

  .sale__container,
  .contact__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sale__content {
    order: 2;
  }

  .sale__timer {
    justify-content: center;
  }

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

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

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