

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

:root {
  --black: #0a0a0a;
  --white: #FFF;
  --gold: #c8a97e;
  --font-display: 'Cormorant Garamond', serif;
  --font-outfit: 'Outfit', sans-serif;
  --font-sc: 'Cormorant SC', serif;

  --container_width: 100%;
	--container_left_space: calc((100% - var(--container_width)) / 2);
	--transition: ease all 300ms;
		
	@media (min-width: 768px) and (max-width: 991px) {
		--container_width: 750px;
	}

	@media (min-width: 992px) and (max-width: 1199px) {
		--container_width: 970px;
	}

	@media (min-width: 1200px) {
		--container_width: 1170px;
	}

	@media (min-width: 1401px) {
		--container_width: 1310px;
	}
}


.container {
	margin: 0 auto;
	width: var(--container_width);
	padding-inline: 15px;

	@media (min-width: 768px) {
		padding-inline: 0;
	}
}


html, body {
  background: var(--white);
  color: var(--white);
  font-family: var(--font-display);
}

.font-outfit {
	font-family: var(--font-outfit);
}

/* ─── SPACING UTILITIES ─── */
.pt_10  { padding-top: 10px; }
.pt_20  { padding-top: 20px; }
.pt_30  { padding-top: 30px; }
.pt_40  { padding-top: 40px; }
.pt_50  { padding-top: 50px; }
.pt_60  { padding-top: 60px; }
.pt_80  { padding-top: 80px; }
.pt_100 { padding-top: 100px; }
.pt_120 { padding-top: 120px; }

.pb_10  { padding-bottom: 10px; }
.pb_20  { padding-bottom: 20px; }
.pb_30  { padding-bottom: 30px; }
.pb_40  { padding-bottom: 40px; }
.pb_50  { padding-bottom: 50px; }
.pb_60  { padding-bottom: 60px; }
.pb_80  { padding-bottom: 80px; }
.pb_100 { padding-bottom: 100px; }
.pb_120 { padding-bottom: 120px; }

.ptb_10  { padding-top: 10px;  padding-bottom: 10px; }
.ptb_20  { padding-top: 20px;  padding-bottom: 20px; }
.ptb_30  { padding-top: 30px;  padding-bottom: 30px; }
.ptb_40  { padding-top: 40px;  padding-bottom: 40px; }
.ptb_50  { padding-top: 50px;  padding-bottom: 50px; }
.ptb_60  { padding-top: 60px;  padding-bottom: 60px; }
.ptb_80  { padding-top: 80px;  padding-bottom: 80px; }
.ptb_100 { padding-top: 100px; padding-bottom: 100px; }
.ptb_120 { padding-top: 120px; padding-bottom: 120px; }



.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  height: 56px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.site-header .container {
  height: 100%;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.site-header__left,
.site-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.header-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 200ms ease;
}

.header-btn:hover { opacity: 0.55; }

body { padding-top: 56px; }


/* ══════════════════════════════════════════════
   NAV OVERLAY & SLIDE-IN MENU
══════════════════════════════════════════════ */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}

.nav-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 350ms ease;
  cursor: pointer;
}

.nav-overlay.is-open .nav-overlay__bg { opacity: 1; }

.nav-menu {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 42%;
  min-width: 300px;
  max-width: 480px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;

  @media (max-width: 767px) {
    width: 88%;
  }
}

.nav-overlay.is-open .nav-menu { transform: translateX(0); }

.nav-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  margin: 24px 0 0 24px;
  flex-shrink: 0;
  text-align: left;
  transition: opacity 200ms ease;
}

.nav-menu__close:hover { opacity: 0.55; }

.nav-menu__list {
  list-style: none;
  margin-top: 24px;
  flex: 1;
}

.nav-menu__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin-inline: 24px;
}

.nav-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-family: var(--font-outfit);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.01em;
  transition: opacity 200ms ease;
}

.nav-menu__link:hover { opacity: 0.55; }

.nav-menu__arrow {
  transition: transform 300ms ease;
  flex-shrink: 0;
  opacity: 0.5;
}

.nav-menu__item--has-dropdown.is-open .nav-menu__arrow {
  transform: rotate(180deg);
}

.nav-menu__dropdown {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
}

.nav-menu__item--has-dropdown.is-open .nav-menu__dropdown {
  max-height: 500px;
}

.nav-menu__sub-link {
  display: block;
  padding: 9px 0 9px 16px;
  font-family: var(--font-outfit);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  transition: opacity 200ms ease;
}

.nav-menu__sub-link:last-child { padding-bottom: 18px; }

.nav-menu__sub-link:hover { opacity: 0.55; }

.nav-menu__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px;
  flex-shrink: 0;
}

.nav-menu__contact {
  font-family: var(--font-outfit);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  transition: opacity 200ms ease;
}

.nav-menu__contact:hover { opacity: 0.55; }

.nav-menu__socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-menu__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 200ms ease;
}

.nav-menu__socials a:hover { opacity: 0.55; }

.nav-menu__socials img {
  filter: invert(1);
}

/* ── Product Card (shared) ── */
.prod-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.prod-card__image-wrap {
  position: relative;
  background: transparent;
  border: 1px solid #14141420;
  line-height: 0;
  padding: 10px;
}

.prod-card__image-wrap img {
  display: block;
  justify-self: center;
  padding: 60px;
}

.prod-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  padding: 13px 16px;
}

.prod-card__atc {
  font-family: var(--font-outfit);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 200ms ease;
}

.prod-card__atc:hover {
  opacity: 0.65;
}

.prod-card__wishlist {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 0;
  transition: opacity 200ms ease;
}

.prod-card__wishlist:hover {
  opacity: 0.65;
}

.prod-card__info {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  align-items: anchor-center;
}

.prod-card__name {
  font-family: var(--font-outfit);
  font-size: 16px;
  font-weight: 300;
  color: #141414;
}

.prod-card__tagline {
  font-family: var(--font-outfit);
  font-size: 12px;
  font-weight: 400;
  color: #777;
  line-height: 1.4;
}

.prod-card__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.prod-card__price-sale {
  font-family: var(--font-outfit);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}

.prod-card__price-orig {
  font-family: var(--font-outfit);
  font-size: 14px;
  font-weight: 400;
  color: #141414;
  text-decoration: line-through;
}

.prod-card__sizes {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.prod-card__size {
  font-family: var(--font-outfit);
  font-size: 12px;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  border: 1px solid #141414;
  border-radius: 80px;
  padding: 5px 10px;
  cursor: pointer;
  transition:
    background 200ms ease,
    color 200ms ease,
    border-color 200ms ease;
}

.prod-card__size:hover,
.prod-card__size.is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ── Footer (shared) ── */
.site-footer {
  background: #0d0d0d;
  color: #fff;
  font-family: "Outfit", sans-serif;
}

.footer__top {
  display: flex;
  gap: 60px;
  padding: 70px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__col {
  flex: 1;
}

.footer__col--newsletter {
  flex: 1;
}

.footer__heading {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.footer__heading--upper {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: 500;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer__links a:hover {
  color: #fff;
}

.footer__input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

.footer__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 10px 0;
  letter-spacing: 0.04em;
}

.footer__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.footer__subscribe {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 0 10px 12px;
  white-space: nowrap;
  transition: opacity 200ms ease;
}

.footer__subscribe:hover {
  opacity: 0.7;
}

.footer__disclaimer {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__disclaimer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}

.footer__socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer__socials a {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 200ms ease;
}

.footer__socials a:hover {
  opacity: 1;
}

.footer__logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 44px;
}

@media (max-width: 991px) {
  .footer__top {
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px 24px 44px;
  }

  .footer__col {
    flex: 1 1 calc(50% - 20px);
    min-width: 180px;
  }

  .footer__col--newsletter {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .footer__top {
    flex-direction: column;
    gap: 36px;
    padding: 40px 20px 36px;
  }

  .footer__col,
  .footer__col--newsletter {
    flex: 1 1 100%;
  }

  .footer__logo-bar {
    padding: 32px 0 36px;
  }

  .footer__logo {
    height: 40px;
  }
}
