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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 70px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  width: 100%;
  overflow-x: hidden;
  flex: 1 0 auto;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

button {
  border: none;
  color: antiquewhite;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

nav button {
  background-color: transparent;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  padding: 0.5rem 1rem;
  margin: 0;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

nav button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

nav button:active {
  transform: translateY(0);
}

nav button.btn {
  background-color: rgb(175, 0, 0);
  border-radius: 1.4rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
}

nav button.btn:hover {
  background-color: rgb(200, 0, 0);
}

.logo {
  width: 60px;
  height: auto;
  display: block;
  margin: 0;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.flex {
  display: flex;
  align-items: center;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  min-height: calc(100vh - 70px);
  padding: 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    45deg,
    rgba(20, 20, 20, 1) 0%,
    rgba(40, 40, 40, 1) 100%
  );
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  margin: 0;
  line-height: 1.1;
}

.title-line {
  display: block;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  font-family: "Lucida Sans", sans-serif;
  background: linear-gradient(45deg, #fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease forwards;
}

.title-emphasis {
  display: block;
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-family: "Franklin Gothic Medium", Arial, sans-serif;
  font-weight: 900;
  background: linear-gradient(45deg, rgb(175, 0, 0), rgb(255, 50, 50));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -0.5rem;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #999;
  margin: 2rem 0;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-cta {
  margin: 2rem 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: rgb(175, 0, 0);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.cta-button:hover {
  background: rgb(200, 0, 0);
  transform: translateY(-2px);
}

.cta-button:hover::before {
  left: 100%;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #999;
  font-size: 0.9rem;
}

.feature i {
  color: rgb(175, 0, 0);
}

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

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-shoe {
  width: min(100%, 28rem);
  height: auto;
  animation: floatAnimation 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.shoe-reflection {
  position: absolute;
  width: min(100%, 28rem);
  height: auto;
  bottom: -20%;
  transform: rotateX(180deg) rotate(-162deg);
  opacity: 0.15;
  filter: blur(2px);
}

.decoration-dots {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.decoration-dots span {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #333;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.decoration-dots span.active {
  background-color: rgb(175, 0, 0);
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 1200px) {
  .hero-section {
    padding: 2rem;
  }
}

@media (max-width: 992px) {
  .hero-section {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    gap: 1rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-text {
    margin: 0 auto;
  }

  .hero-features {
    justify-content: center;
  }

  .image-container {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 1rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .image-container {
    max-width: 300px;
  }
}
.nike {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.mt {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: rgb(20, 20, 20);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgb(30, 30, 30);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transition: bottom 0.3s ease;
  display: flex;
  justify-content: center;
}

.product-card:hover .product-overlay {
  bottom: 0;
}

.quick-add {
  background: rgb(175, 0, 0);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.quick-add:hover {
  background: rgb(200, 0, 0);
  transform: translateY(-2px);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-category {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.current-price {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.original-price {
  color: #666;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.discount {
  background: rgba(175, 0, 0, 0.2);
  color: rgb(255, 100, 100);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
    padding: 1rem;
  }

  .product-card {
    max-width: 100%;
  }
}
.footer {
  background-color: rgb(20, 20, 20);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-links a {
  color: #999;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.copyright {
  color: #666;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #999;
}

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

  .footer-content {
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

.mt {
  color: rgb(223, 168, 97);
}

/* Desktop and large screens */
@media screen and (min-width: 1200px) {
  .container4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
  }

  .container1 {
    padding-left: 8rem;
  }
}

/* Laptop and iPad Pro */
@media screen and (min-width: 1001px) and (max-width: 1199px) {
  .container4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 90%;
  }

  .container1 {
    padding-left: 6rem;
  }

  .font1 {
    font-size: 4.5rem;
  }

  .font2 {
    font-size: 5rem;
  }
}

/* Tablet and iPad */
@media screen and (min-width: 728px) and (max-width: 1000px) {
  nav button {
    margin-left: 0.8rem;
    font-size: 0.9rem;
  }

  .container2 {
    width: 25rem;
    margin-right: 3%;
    margin-top: 2.5rem;
  }

  .container4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 95%;
  }

  .font1 {
    font-size: 4rem;
  }

  .font2 {
    font-size: 4.5rem;
  }

  .container1 {
    padding-left: 4rem;
  }

  .hero {
    width: 22rem;
    height: auto;
  }

  .container4 div {
    width: auto;
  }
}
/*mini tablet */
/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: antiquewhite;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 728px) {
  body {
    padding-top: 60px;
  }

  header {
    padding: 0.5rem 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-container {
    position: static;
    width: auto;
  }

  .logo {
    width: 45px;
    margin-right: auto;
  }

  nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 60px);
    background-color: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 20px;
    transition: right 0.3s ease;
    margin: 0;
    align-items: flex-start;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  }

  nav.active {
    right: 0;
  }

  nav button {
    width: 100%;
    margin: 0.5rem 0;
    text-align: left;
    padding: 0.8rem 1rem;
    transition: background-color 0.3s ease;
    border-radius: 8px;
  }

  nav button:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  nav button.btn {
    background-color: rgb(175, 0, 0);
  }

  .flex {
    flex-direction: column-revere;
  }

  .container1,
  .container2 {
    height: 26rem;
  }
  .container1 {
    left: 0;
    padding-left: 10%;
    opacity: 0.9;
    width: 90%;
  }
  .container2 {
    width: 100%;
    margin-top: 4rem;
  }

  .dot {
    left: 2rem;
  }
  .mt {
    margin-top: 2rem;
  }
  .container4 {
    width: 96%;
    padding: 10px 2% 10px 2%;
  }
}

@media screen and (min-width: 650px) and (max-width: 728px) {
  .container4 {
    grid-template-columns: repeat(3, 0fr);
  }
}

/* Small Tablet Styles */
@media screen and (min-width: 500px) and (max-width: 727px) {
  .container4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 90%;
    margin: 0 auto;
  }

  .container4 div {
    width: auto;
  }

  .container1 {
    padding: 2rem;
    text-align: center;
    margin: 0 auto;
  }

  .font1 {
    font-size: 3.5rem;
  }

  .font2 {
    font-size: 4rem;
  }

  .font3 {
    font-size: 0.9rem;
    display: block;
    margin: 1rem 0;
  }

  .hero {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .container2 {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
  }

  .dot {
    position: static;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 2rem 0;
  }

  .btn-2 {
    margin: 1rem auto;
    display: block;
  }
}

/* Mobile Styles */
@media screen and (max-width: 499px) {
  header {
    padding: 0.5rem;
  }

  .logo {
    width: 40px;
  }

  .container1 {
    padding: 1.5rem;
    text-align: center;
    margin: 0 auto;
  }

  .font1 {
    font-size: 3rem;
  }

  .font2 {
    font-size: 3.5rem;
    line-height: 1.1;
  }

  .font3 {
    font-size: 0.9rem;
    display: block;
    margin: 1rem 0;
  }

  .hero {
    width: 95%;
    height: auto;
    margin: 0 auto;
  }

  .container2 {
    width: 100%;
    margin: 2rem auto;
  }

  .container4 {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 85%;
    margin: 0 auto;
    padding: 1rem;
  }

  .container4 div {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .dot {
    position: static;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 2rem 0;
  }

  .btn-2 {
    margin: 1rem auto;
    display: block;
  }

  .mt {
    text-align: center;
    font-size: 1.5rem;
    margin: 2rem 0;
  }
}
