body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

.nav1 {
    width: 100vw;
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 1vh;
}

.nav-close {
    position: absolute;
    top: 0%;
    right: 3vw;
    width: 40px;
    height: 40px;
    border-radius: 999px;

    font-size: 28px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    z-index: 100;
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 64px auto;
    align-items: center;

    padding: 0 16px;
    max-width: 90vw;
    margin: 0 auto;
    height: auto;
}

.nav__left {
    grid-column: 1;
    grid-row: 1;

}

.nav__left .nav__link {
    margin: 1vw;
}

.nav__logo {
    grid-column: 2;
    grid-row: 1;
}

.nav__right {
    grid-column: 4;
    grid-row: 1;
    display: flex;

}

.nav__right .nav__iconBtn {
    margin: 0.4vw;
}

.categorys-nav__link {
    margin-right: 1vw;
    margin-left: 1vw;

}

.categorys-nav {
    grid-column: 1 / -1;
    grid-row: 2;

    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;

    padding: 8px 0 12px;
    margin: 0;
}

.nav__link {
    text-decoration: none;
    color: #111;
    font: 500 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    letter-spacing: .02em;
}

.nav__logo {
    justify-self: center;
    text-decoration: none;
    color: #111;
}

.nav__logoText {
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: .01em;
    font-size: 2rem;

}

.nav__iconBtn {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #111;
    cursor: pointer;
    border-radius: 999px;
    padding: 0;
}

.nav__iconBtn svg {
    width: 22px;
    height: 22px;
}

.nav__iconBtn:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}


.categorys-nav__link {
    text-decoration: none;
    color: #111;
    font: 500 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    padding: 6px 2px 10px;
    /* extra bottom space for underline */
    border-bottom: 2px solid transparent;
    margin-bottom: -0.6%;
    /* reserve space so it doesn't jump */
}

.categorys-nav__link:hover {
    border-bottom-color: rgba(0, 0, 0, .35);
}

.categorys-nav__link.is-active {
    border-bottom-color: #111;
    border-bottom-width: 4px;
    /* bigger border when selected */
    font-weight: 700;
    /* optional */
}

/* accessibility: tells screen readers it's the current page */
.categorys-nav__link[aria-current="page"] {
    border-bottom-color: #111;
    border-bottom-width: 4px;
    font-weight: 700;
}

.firstsitePAGE-title {
    font-family: 'Playfair Display', Times, serif !important;
    background-color: #F8F5F3;
    height: fit-content;
}

.firstsitePAGE-title {
    /* full screen height */
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* text a bit wider than images */
    align-items: center;

    gap: 40px;
    padding: 0px 6vw;
    /* space around */
    
}






.firstsitePAGE-title {
  padding-top: 2% !important;
}

.hero__text h1 {
    font-size: 100px;
    font-weight: 600;
    line-height: 1.02;
      text-transform: uppercase;
    width: 150vw;
    max-width: 110vh;
     font-size: 80px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 0;
    padding: 12px 18px;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    font: 600 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.hero__btn:hover {
    background: #111;
    color: #fff;
}

.hero__images {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* first smaller, second bigger */
    gap: 18px;
    align-items: end;
    /* bottoms align nicely */
    justify-self: end;
    /* keep images on the right */
}

.hero__img {
    width: 100%;
    height: auto;
    display: block;

    /* round only the top corners */
    border-radius: 90000px 90000px 0 0;
    transform: none;
    object-fit: cover;
}

/* Make the “big” one taller */
.hero__img--small {
    aspect-ratio: 3 / 4;
}

.hero__img--big {
    aspect-ratio: 3 / 4;
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
    .firstsitePAGE-title {
        grid-template-columns: 1fr;
        padding-top: 48px;
    }

    .hero__images {
        justify-self: start;
        width: min(560px, 100%);
    }

    .hero__img--big {
        transform: none;
    }
}
.value3 {
  margin: auto;
  padding: 56px 6vw;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.value3__item {
  padding: 18px 0;
  text-align: center;
}

.value3__kicker {
  font: 700 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.65);
  margin-bottom: 10px;
 font-size: 16px;
}

.value3__title {
  margin: 0 0 10px;
  font: 700 18px/1.15 "Times New Roman", Times, serif; /* match your style */
  letter-spacing: 0.02em;
  color: #111;
  font-size: 32px
}

.value3__desc {
text-align: center;
  margin: auto;
  font: 400 14px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: rgba(0,0,0,.75);
  max-width: 42ch; /* keeps descriptions aligned visually */
  font-size: 16px;
}

/* responsive */
@media (max-width: 900px) {
  .value3 {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 40px 6vw;
  }
}
.new-arrivals {
  margin: 0 auto;
  padding: 64px 6vw;

  display: grid;
  grid-template-columns: 1fr 1.5fr; /* left text, right rail */
  gap: 36px;
  align-items: start;
  min-height: 50%;
}

.new-arrivals__title {
  margin: 0 0 12px;
  font: 700 28px/1.1 "Times New Roman", Times, serif;
  color: #111;
  font-size: 60px;
}

.new-arrivals__desc {
  margin: 0 0 14px;
  font: 400 14px/1.7 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: rgba(0,0,0,.75);
  max-width: 52ch;
   font-size: 16px;
}

.new-arrivals__link {
  display: inline-block;
  text-decoration: none;
  color: #111;
  font: 600 13px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid #111;
  padding-bottom: 4px;
}


/* the horizontal scroll rail */
.new-arrivals__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px; /* card width */
  gap: 16px;

  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;

  -webkit-overflow-scrolling: touch;
}

/* nicer scrollbar (optional) */
.new-arrivals__rail::-webkit-scrollbar { height: 8px; }
.new-arrivals__rail::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.25);
  border-radius: 999px;
}

.arrival-card {
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.arrival-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;

}

.arrival-card__meta {
  padding: 10px 2px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.arrival-card__name {
  font: 600 13px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: #111;
}

.arrival-card__price {
  font: 600 13px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: rgba(0,0,0,.7);
  white-space: nowrap;
}

/* responsive: stack text above rail */
@media (max-width: 900px) {
  .new-arrivals {
    grid-template-columns: 1fr;
  }
  .new-arrivals__rail {
    grid-auto-columns: 70vw; /* big cards on mobile */
  }
}

/* Wrap so arrows can sit on top of the rail */
.new-arrivals__railWrap {
  position: relative;
}

/* Make the rail definitely scrollable + show scrollbar */
.new-arrivals__rail {
  overflow-x: scroll;  /* instead of auto, this forces scrollbar */
  scrollbar-gutter: stable both-edges; /* keeps layout steady where supported */
  scroll-behavior: smooth;

  padding: 6px 52px 14px; /* left/right padding so arrows don't cover cards */
}

/* Firefox scrollbar color */
.new-arrivals__rail {
  scrollbar-color: rgba(0,0,0,.35) transparent;
  scrollbar-width: thin;
}

/* WebKit scrollbar styling (Chrome/Safari/Edge) */
.new-arrivals__rail::-webkit-scrollbar {
  height: 10px;
}

.new-arrivals__rail::-webkit-scrollbar-track {
  background: transparent;
}

.new-arrivals__rail::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.35);
  border-radius: 999px;
}

/* Arrow buttons */
.railArrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 2;

  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.18);
  background: rgba(255,255,255,.92);
  color: #111;
  cursor: pointer;

  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  border-radius: 0; /* keep square if you want */
}

/* left/right positioning */
.railArrow--left  { left: 0; }
.railArrow--right { right: 0; }

.railArrow:hover {
  background: #fff;
  border-color: rgba(0,0,0,.35);
}

.railArrow:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}
.shopByCat {
  background: #F8F5F3; /* optional */
  padding: 72px 6vw;
}

.shopByCat__grid {
  max-width: 1800px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 48px;
  align-items: center;
}



.shopByCat__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;

  /* rounded tops */
  border-radius: 40px 40px 0 0;
}

/* content */
.shopByCat__kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.6);
  margin-bottom: 18px;
}

.shopByCat__nav {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.shopByCat__item {
  text-decoration: none;
  font-size: 60px;
  line-height: 1.02;
font-family: 'Playfair Display', Times, serif !important;
  color: #A89C93; /* non-selected */
}

.shopByCat__item.is-active,
.shopByCat__item[aria-current="page"] {
  color: #000; /* selected */
}

/* See more link */
.shopByCat__more {
  display: inline-block;
  text-decoration: none;
  color: #111;
  letter-spacing: 0.08em;
  text-transform: uppercase;
font-family: 'Playfair Display', Times, serif !important;
  border-bottom: 2px solid #111;
  padding-bottom: 4px;
}

/* responsive */
@media (max-width: 900px) {
  .shopByCat__grid {
    grid-template-columns: 1fr;
  }

  .shopByCat__item {
    font-size: 38px;
  }
}
.shopByCat__content {
  text-align: left;     /* ensures text is aligned */
  justify-self: start;  /* keeps the whole text block aligned to the left of its column */
}

.shopByCat__nav {
  justify-items: start; /* makes each link start on the same left line */
}
.shopByCat__media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: end;
}

.shopByCat__content--center {
  text-align: center;
  justify-self: center;
}

.shopByCat__content--center .shopByCat__nav {
  justify-items: center; /* center each category text */
}

/* responsive */
@media (max-width: 900px) {
  .shopByCat__grid--3col {
    grid-template-columns: 1fr;
  }

  .shopByCat__content--center {
    text-align: left; /* optional; or keep centered on mobile */
    justify-self: start;
  }

  .shopByCat__content--center .shopByCat__nav {
    justify-items: start;
  }
}
/* ===== Masonry-like grid (fits content, no fixed height) ===== */
.parent {
  padding: 56px 6vw;
  display: grid;
  gap: 18px;

  /* desktop layout */
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px; /* controls overall height; increase = taller section */
}

/* Tiles */
.parent > div {
  border-radius: 28px;
  overflow: hidden;
  background: #f6f2ef;
}

/* Images fill tile */
.parent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placement (desktop) */
.div1 { grid-column: 1 / 5;  grid-row: 1 / 4; }
.div2 { grid-column: 5 / 9;  grid-row: 1 / 3; }
.div5 { grid-column: 9 / 13; grid-row: 1 / 4; }
.div6 { grid-column: 1 / 6;  grid-row: 4 / 7; }
.div7 { grid-column: 6 / 13; grid-row: 4 / 7; }

/* Text tile */
.div7 {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
}

.div7 h3 {
  margin: 0 0 14px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(28px, 2.4vw, 46px);
  line-height: 1.1;
  max-width: 18ch;
}

.div7 a {
  display: inline-block;
  text-decoration: none;
  color: #111;
  font: 700 13px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid #111;
  padding-bottom: 4px;
}

/* Mobile: stack (still rounded, still fits content) */
@media (max-width: 900px) {
  .parent {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .div1, .div2, .div5, .div6 {
    min-height: 240px;
  }

  .div7 {
    min-height: 240px;
  }

  /* reset placements so they stack naturally */
  .div1, .div2, .div5, .div6, .div7 {
    grid-column: auto;
    grid-row: auto;
  }
}
.site-footer {
  background: #000;
  color: #fff;
  padding: 72px 6vw 26px;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__heading {
  margin: 0 0 12px;
  font: 700 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.site-footer__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 520px;
}

.site-footer__input {
  height: 44px;
  padding: 0 12px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.22);
  background: transparent;
  color: #fff;
  outline: none;
}

.site-footer__input::placeholder {
  color: rgba(255,255,255,.55);
}

.site-footer__submit {
  height: 44px;
  padding: 0 14px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.22);
  background: #fff;
  color: #000;
  cursor: pointer;
  font: 700 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__socialBtns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__socialBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;

  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  font: 600 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.site-footer__select {
  width: 100%;
  height: 44px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.22);
  background: transparent;
  color: #fff;
  padding: 0 10px;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 34px 0 34px;
}

.site-footer__colTitle {
  margin: 0 0 14px;
  font: 700 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.site-footer__link {
  display: block;
  padding: 8px 0;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font: 400 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.site-footer__link:hover {
  color: #fff;
}

.site-footer__bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);

  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 18px;
  align-items: center;
}

.site-footer__copyright {
  color: rgba(255,255,255,.72);
  font: 400 13px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.site-footer__legal {
  justify-self: center;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.site-footer__legalLink {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font: 600 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__sep {
  color: rgba(255,255,255,.35);
}

.site-footer__payments {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__pay {
  border: 1px solid rgba(255,255,255,.22);
  padding: 6px 10px;
  font: 700 11px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

/* responsive */
@media (max-width: 900px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-footer__legal {
    justify-self: start;
  }

  .site-footer__payments {
    justify-self: start;
  }
}