body {
  margin: 0px;
  height: auto;
  width: auto;
  scroll-behavior: smooth;
}

.cta {
  height: 27px;
  width: 100%;
  background: #000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  text-align: center;
  align-content: center;
  letter-spacing: 1px;
}

.collections {
  margin: 100px 30px;
}

.collections-2 {
  margin: 140px 30px;
}

.About {
  margin: 70px 0px 30px;
}

.sub-header {
  font-size: 30px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  text-align: center;
}

.sub-header2 {
  font-size: 30px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  text-align: left;
}

.product-grid {
  margin: 70px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
  row-gap: 80px;
}

.product-grid-2 {
  margin: 70px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
}


.products {
  width: 100%;
  height: 300px;
  overflow: visible;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.products:hover {
  transform: translateY(-5px);
}

.p-new {
  width: 100%;
  height: 300px;
  overflow: visible;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.p-new:hover {
  transform: translateY(-5px);
}
.p-1 {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.p-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.p-name {
  font-size: 14px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  color: #1e1e1e;
}

.price {
  font-size: 16px;
  font-weight: 300;
  font-family: "DM Sans", sans-serif;
  color: rgba(26, 26, 26, 0.7);
}

.colors {
  display: flex;
  gap: 10px;
}

.white {
  border: 2px;
  border-radius: 3px;
  border-color: rgb(0, 0, 0);
  border-style: solid;
  background-color: #ffffff;
  color: #ffffff;
  font-size: 12px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  height: 14px;
  width: 14px;
  text-align: center;
}

.black {
  border: 2px;
  border-radius: 3px;
  border-color: rgb(0, 0, 0);
  border-style: solid;
  background-color: #000000;
  color: #000000;
  font-size: 12px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  height: 14px;
  width: 14px;
  text-align: center;
}

.abt {
  margin: 70px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  column-gap: 100px;
  align-items: center;
  padding-right: 70px;
  padding-bottom: 80px;
}

.abt-img {
  width: 100%;
  height: 600px;
  overflow: hidden;
}


.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.about-image:hover {
  transform: scale(1.2);
}

.about-info {
  box-sizing: border-box;
  color: #171717;
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-block-end: 15px;
  margin-block-start: 20px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  text-align: left;
  text-size-adjust: 100%;
  unicode-bidi: isolate;
}

.contact {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-size-adjust: 100%;
  unicode-bidi: isolate;
}

.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: 20px;
  width: 400px;
}

.contact-1 {
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}

.socials {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
}

.cta-button {
  width: 100%;
  height: 40px;
  text-align: center;
  border: 0px;
  border-style: solid;
  border-radius: 7px;
  background-color: black;
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}

.message-input {
  width: 100%;
  padding: 10px 15px 10px 10px;
  font-size: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 7px;
  outline: none;
  transition: border-color 0.3s;
}

.message-input:focus {
  border-color: rgb(0, 0, 0);
}

.email-input {
  width: 100%;
  padding: 10px 15px 10px 10px;
  font-size: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 7px;
  outline: none;
  transition: border-color 0.3s;
}

.email-input:focus {
  border-color: rgb(0, 0, 0);
}

.message-placeholder {
  width: 100%;
  padding: 10px 15px 10px 10px;
  font-size: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 7px;
  outline: none;
  transition: border-color 0.3s;
}

.message-placeholder:focus {
  border-color: rgb(0, 0, 0);
}


.footer-container {
  margin: 70px 0px 0px;
  background-color: black;
  width: auto;
  height: 100px;
  padding: 0px 0px 70px 0px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 400px;
  justify-content: space-evenly;
  margin: 70px 0px 0px;
  background-color: black;
  width: auto;
  height: 100px;
  padding: 40px 30px 70px 30px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #cccccc;
  font-size:  14px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}

.links {
  display: flex;
  flex-direction: row;
  gap: 100px;
  color: #cccccc;
  font-size:  14px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}

.socials-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #cccccc;
  font-size:  14px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}

.copyright {
  color: #cccccc;
  font-size:  12px;
  font-family: "DM Sans", sans-serif;
  font-weight: lighter; 
  margin: 50px 0px 0px 0px;
  letter-spacing: 1px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.y2k {
  color: rgb(255, 255, 255);
  font-size:  30px;
  font-family: "DM Sans", sans-serif;
  font-weight: bold; 
  letter-spacing: 1px;
}

/* ===== MEDIA QUERIES ===== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
  .collections {
    margin: 70px 20px;
  }

  .collections-2 {
    margin: 100px 20px;
  }

  .About {
    margin: 60px 0px 20px;
  }

  .sub-header {
    font-size: 26px;
  }

  .sub-header2 {
    font-size: 24px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    row-gap: 100px;
    margin: 50px 0px;
  }

  .product-grid-2 {
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    margin: 50px 0px;
  }

  .products {
    height: 280px;
  }

  .p-1 {
    height: 280px;
  }

  .p-new {
    height: 400px;
  }

  .p-2 {
    height: 400px;
  }

  .abt {
    margin: 50px 20px;
    grid-template-columns: 1fr;
    column-gap: 20px;
    padding-right: 0;
    padding-bottom: 50px;
  }

  .abt-img {
    height: 400px;
  }

  .contact-container {
    width: 90%;
    max-width: 350px;
  }

  .footer {
    grid-template-columns: 1fr;
    column-gap: 0;
    gap: 30px;
    padding: 30px 20px 50px 20px;
    height: auto;
  }

  .links {
    flex-direction: column;
    gap: 40px;
  }

  .copyright {
    margin: 30px 0px 0px 0px;
  }
}

/* Mobile Styles (below 768px) */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .cta {
    font-size: 10px;
    padding: 8px 0;
    height: 22px;
    letter-spacing: 0.5px;
  }

  .collections {
    margin: 50px 15px;
  }

  .collections-2 {
    margin: 140px 15px;
  }

  .About {
    margin: 50px 0px 20px;
  }

  .sub-header {
    font-size: 22px;
    margin: 0 15px;
  }

  .sub-header2 {
    font-size: 20px;
  }

  .product-grid {
    grid-template-columns: 2, 1fr;
    column-gap: 40px;
    row-gap:  70px;
    margin: 40px 0px;
  }

  .product-grid-2 {
    grid-template-columns: 2, 1fr;
    row-gap: 100px;
    margin: 40px 0px;
  }

  .products {
    height: 250px;
  }

  .p-1 {
    height: 250px;
  }

  .p-new {
    height: 350px;
  }

  .p-2 {
    height: 350px;
  }

  .p-name {
    font-size: 13px;
  }

  .price {
    font-size: 14px;
  }

  .colors {
    gap: 8px;
    margin-top: 5px;
  }

  .white,
  .black {
    height: 12px;
    width: 12px;
    font-size: 10px;
  }

  .abt {
    margin: 40px 15px;
    grid-template-columns: 1fr;
    column-gap: 0;
    padding-right: 0;
    padding-bottom: 30px;
  }

  .abt-img {
    height: 300px;
    margin-bottom: 20px;
  }

  .about-info {
    font-size: 14px;
    line-height: 25px;
    margin-block-start: 15px;
  }

  .contact-container {
    width: 70%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .contact-1 {
    font-size: 20px;
  }

  .message-input {
    font-size: 13px;
    padding: 8px 12px;
  }

  .cta-button {
    width: 200px;
    height: 36px;
    font-size: 12px;
    font-weight: 600;
  }

  .footer {
    grid-template-columns: 1fr;
    column-gap: 0;
    gap: 20px;
    padding: 20px 15px 40px 15px;
    height: auto;
    margin: 50px 0px 0px;
  }

  .footer-logo {
    gap: 8px;
  }

  .logo-web {
    width: 24px;
    height: 24px;
  }

  .footer-nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .links {
    flex-direction: column;
    gap: 25px;
    font-size: 13px;
  }

  .socials-links {
    gap: 12px;
    font-size: 13px;
  }

  .copyright {
    font-size: 11px;
    margin: 20px 0px 0px 0px;
  }
}

/* Small Mobile (below 480px) */
@media (max-width: 479px) {
  .sub-header {
    font-size: 20px;
  }

  .sub-header2 {
    font-size: 18px;
  }

  .contact-container {
    width: 95%;
    gap: 15px;
  }

  .product-grid,
  .product-grid-2 {
    margin: 30px 0px;
  }

  .products {
    height: 220px;
  }

  .p-1 {
    height: 220px;
  }

  .p-new {
    height: 300px;
  }

  .p-2 {
    height: 300px;
  }

  .abt {
    margin: 30px 10px;
  }

  .abt-img {
    height: 250px;
  }
}
