@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Inter+Tight:wght@600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@600;700;800&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}

h1,
h2,
h3,
.site-logo,
.footer-logo {
  font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HERO */

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.35) 50%,
            rgba(0,0,0,.15) 100%
        ),
        url("assets/images/bg.png") center center/cover;
    color: #fff;
}

.hero__content {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-benefits {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    justify-content: center;
    gap: 70px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.2);
}

.hero-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-benefits .benefit-item p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.92);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .9;
  letter-spacing: -2px;
  font-family: 'Inter Tight', Arial, Helvetica, sans-serif;
  font-weight: 900;
  max-width: 680px;
}

.hero p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #eee;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: .2px;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
}

.btn--light {
  background: #fff;
  color: #111;
}

.btn--dark {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}

/* CATEGORIES */

.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 30px 0 54px;
}

.category-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 0;
  background: #111;
  color: #fff;
  text-decoration: none;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.9) contrast(1.02);
  transition: transform .45s ease, filter .45s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.38),
    rgba(0,0,0,.08),
    rgba(0,0,0,0)
  );
}

.category-card:hover img {
  transform: scale(1.06);
  filter: brightness(.78) contrast(1.04);
}

.category-card div {
  position: absolute;
  z-index: 2;
  inset: auto 24px 24px 24px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;

  color: #fff;
}

.category-card h3 {
  margin: 0;
  max-width: none;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -1.4px;
  white-space: nowrap;
}

.category-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 72px;
  height: 34px;
  padding: 0 14px;

  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;

  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;

  transition: background .25s ease, color .25s ease;
}

.category-card:hover span {
  background: #fff;
  color: #111;
}


/* PRODUCTS */

.products {
  padding-bottom: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 22px;
}

.product-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.product-card a {
  color: inherit;
  text-decoration: none;
}

.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1.18;
  background: #f4f4f4;
  overflow: hidden;
  border-radius: 4px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__image button {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 34px;
  height: 34px;

  border: 1px solid rgba(0,0,0,.08);
  border-radius: 50%;

  background: rgba(255,255,255,.9);
  color: #111;

  font-size: 17px;
  line-height: 1;

  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.product-card__image button:hover {
  background: #111;
  color: #fff;
  transform: scale(1.06);
}

.product-card__info {
  padding: 14px 0 0;
}

.product-card__info small {
  display: block;
  margin-bottom: 7px;

  color: #777;

  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.product-card__info h3 {
  margin: 0 0 12px;

  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.2px;
}

.product-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;

  font-size: 12px;
  color: #777;
}

.product-card__bottom strong {
  color: #111;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.product-card__bottom del {
  color: #777;
  margin-right: 4px;
}

.product-card__bottom ins {
  text-decoration: none;
}


/* RESPONSIVE */

@media (max-width: 1000px) {
  .categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .categories {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 220px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 14px;
  }

  .product-card__info h3 {
    font-size: 13px;
  }
}

/* TRUST */

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background: transparent;

  border-radius: 14px;
  overflow: hidden;

  margin: 60px auto;
  width: calc(100% - 96px);
  max-width: 1080px;

  border: 1px solid rgba(255,255,255,0.16);
}

.trust-item {
  position: relative;

  min-height: 118px;
  padding: 30px 14px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 12px;
  text-align: center;
}

/* divider */

.trust-item:not(:last-child)::after {
  content: "";

  position: absolute;
  right: 0;
  top: 22%;

  width: 1px;
  height: 56%;

  background: rgba(255,255,255,0.12);
}

.trust-item svg {
  width: 40px;
  height: 40px;

  stroke: #fff;
  stroke-width: 2.2;
}

.trust-item strong {
  font-size: 22px;
  font-weight: 800;
  color: black;
  line-height: 1;
  letter-spacing: -0.3px;
}

.trust-item span {
  font-size: 12px;

  color: rgba(255,255,255,.72);

  line-height: 1.2;
}

/* MOBILE */

@media (max-width: 768px) {

  .trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: none;
  }

}

/* BRANDS */

.brands {
  padding: 12px 0 44px;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 20px;
}

.brand-item {
  height: 120px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.2s ease;
}

.brand-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
}

.brand-item img {
  width: 160px;
  height: auto;
  object-fit: contain;

  filter: brightness(0) invert(1);
  opacity: .92;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .categories,
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust img {
    grid-column: span 2;
    height: 220px;
  }

  .brand-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .container,
  .hero__content {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: 520px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-benefits {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 28px;
    }

    .hero-benefits .benefit-item p {
    font-size: 12px;
    }

  .categories,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card {
    height: 135px;
  }

  .trust {
    grid-template-columns: 1fr;
  }

  .trust img {
    grid-column: auto;
  }

  .brand-list {
    grid-template-columns: 1fr;
  }
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #12352a;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.site-header__inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px 1fr 160px;
  align-items: center;
  gap: 24px;
}

/* HEADER BAR */

.header-bar {
  background: #f3eee7;
  border-top: 1px solid rgba(0,0,0,.06);
}

.header-bar__inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 52px;
}

.header-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2a2a2a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

.header-bar__item svg {
  flex-shrink: 0;
  opacity: .75;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  max-height: 100px;
  width: auto;
  display: block;
}

.site-nav__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.site-nav__menu li {
  position: relative;
  list-style: none;
}

.site-nav__menu a {
  display: block;
  padding: 27px 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  letter-spacing: .1px;
  text-decoration: none;
  position: relative;
}

.site-nav__menu > li > a {
  position: relative;
}

.site-nav__menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;

  width: 100%;
  height: 1px;

  background: #fff;
  opacity: .8;

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.22s ease;
}

.site-nav__menu > li > a:hover::after {
  transform: scaleX(1);
}

/* SUBMENU */

.site-nav__menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 190px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .18s ease;
}

.site-nav__menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav__menu .sub-menu a {
  padding: 10px 12px;
  color: #12352a;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav__menu .sub-menu a:hover {
  background: #f4f4f4;
  color: #111;
}

/* ACTIONS */

.site-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.site-action {
  position: relative;

  width: 36px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  padding: 0;

  background: transparent;

  color: #fff;
  text-decoration: none;

  cursor: pointer;

  transition: opacity .2s ease;
}

.site-actions a:hover,
.site-action:hover {
  color: #d6d6d6;
  opacity: .7;
}

.site-action svg {
  width: 20px;
  height: 20px;
}

.site-action--account svg {
  width: 28px;
  height: 28px;
}

.site-action__count {
  position: absolute;

  top: 1px;
  right: -2px;

  min-width: 16px;
  height: 16px;
  padding: 0 4px;

  display: grid;
  place-items: center;

  border-radius: 999px;

  background: #fff;
  color: #050505;

  font-size: 10px;
  font-weight: 900;
  line-height: 16px;
}


/* SEARCH OVERLAY */

.search-overlay {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding: 120px 20px 20px;

  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;

  transition: .25s ease;

  z-index: 9999;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-overlay__content {
  width: min(100%, 760px);

  padding: 34px;

  background: #fff;
  border-radius: 10px;
}

.search-overlay__content h2 {
  margin: 0 0 20px;

  color: #111;
  font-size: 32px;
}

.search-form {
  display: flex;
  gap: 12px;
}

.search-form input[type="search"] {
  flex: 1;

  height: 56px;
  padding: 0 18px;

  border: 1px solid #ddd;

  font: inherit;
}

.search-form button {
  height: 56px;
  padding: 0 28px;

  border: 0;

  background: #111;
  color: #fff;

  font-weight: 700;
  cursor: pointer;
}

.search-overlay__close {
  position: absolute;

  top: 28px;
  right: 34px;

  border: 0;
  padding: 0;

  background: transparent;

  color: #fff;
  font-size: 42px;
  line-height: 1;

  cursor: pointer;
}

/* MOBILE */

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 110px 1fr;
    height: 64px;
  }

  .site-logo img {
    max-height: 26px;
  }

  .site-nav {
    display: none;
  }

  .site-actions {
    gap: 8px;
  }

  .site-actions a,
  .site-action {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .header-bar {
    display: none;
  }
}

/* FOOTER */

.site-footer {
  background: #12352a;
  color: #fff;
}

.site-footer__inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo img {
  display: block;
  width: auto;
  max-width: 200px;
  max-height: 150px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 260px;
  margin: 0;
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column h3 {
  margin: 0 0 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a,
.footer-menu a {
  display: block;
  margin-bottom: 10px;
  color: #bbb;
  font-size: 14px;
  text-decoration: none;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-menu li:nth-child(4),
.footer-menu li:nth-child(6) {
  display: none;
}

.footer-column a:hover,
.footer-menu a:hover,
.site-footer__bottom a:hover {
  color: #fff;
}

.site-footer__bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #888;
  font-size: 13px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom div {
  display: flex;
  gap: 18px;
}

.site-footer__bottom a {
  color: #888;
  text-decoration: none;
}

@media (max-width: 850px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 520px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .site-footer__bottom div {
    flex-direction: column;
    gap: 8px;
  }
}

/* COLLECTION */

.collection-page {
  background: #fff;
  color: #111;
}

.collection-header {
  padding: 44px 0 40px;
}

.collection-breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(0,0,0,.6);
}

.collection-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.collection-breadcrumb a:hover {
  color: #000;
}

.collection-header h1 {
  margin: 0;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -2px;
  color: #12352a;
}

.collection-header__line {
  width: 45px;
  height: 2px;
  background: #12352a;
  margin: 16px 0 18px;
}

.collection-header p {
  max-width: 480px;
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.65;
}

.collection-layout {
  padding-top: 0;
}

.collection-filter-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 32px;
}

.filter-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.filter-bar-label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.filter-bar-clear {
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.filter-bar-clear--inactive {
  color: #aaa;
}

.filter-bar-center {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.filter-bar-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.woocommerce-ordering {
  margin: 0 !important;
  display: flex;
  align-items: center;
}

.woocommerce-ordering select,
.filter-bar-right select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 180px;
  height: 36px;
  padding: 0 32px 0 12px;
  border: 1px solid #d0d0d0;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 10px center;
  font-size: 12px;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  cursor: pointer;
  transition: border-color 0.2s;
}

.woocommerce-ordering select:hover,
.filter-bar-right select:hover {
  border-color: #111;
}

.woocommerce-ordering select:focus,
.filter-bar-right select:focus {
  outline: none;
  border-color: #12352a;
  box-shadow: 0 0 0 2px rgba(18,53,42,0.08);
}

.collection-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0 48px;
  align-items: start;
}

.collection-sidebar {
  padding-bottom: 40px;
  position: sticky;
  top: 24px;
}

.filter-accordion {
  border-top: 1px solid #e5e5e5;
}

.filter-accordion:last-of-type {
  border-bottom: 1px solid #e5e5e5;
}

.filter-accordion__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #111;
  text-align: left;
}

.filter-accordion__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.filter-accordion__trigger[aria-expanded="true"] .filter-accordion__chevron {
  transform: rotate(180deg);
}

.filter-accordion__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}

.filter-accordion__content.is-open {
  max-height: 500px;
  padding-bottom: 16px;
}

.filter-option {
  font-size: 14px;
  color: #444;
  text-decoration: none;
}

.filter-option:hover {
  color: #000;
}

.filter-option.is-active {
  color: #12352a;
  font-weight: 600;
}

.filter-option.is-active::before {
  content: '–';
  margin-right: 5px;
  opacity: 0.6;
}

.btn-show-products {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 16px 0;
  background: transparent;
  border: 1px solid #111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: #111;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
}

.btn-show-products:hover {
  background: #111;
  color: #fff;
}

.collection-main {
  width: 100%;
  min-width: 0;
}

.collection-toolbar {
  display: none;
}

.collection-ordering form {
  margin: 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 24px;
}

.collection-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.collection-card:hover {
  transform: none;
  box-shadow: none;
}

.collection-card__media {
  position: relative;
}

.collection-card__image-link {
  display: block;
  text-decoration: none;
}

.collection-card__image {
  aspect-ratio: 1 / 1.1;
  background: #e9e9e9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-card__image img {
  transform: scale(1.05);
}

.collection-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.collection-card__placeholder svg {
  width: 52px;
  height: 52px;
  color: #bbb;
}

.collection-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.collection-card__info {
  display: block;
  padding: 10px 0 0;
  color: inherit;
  text-decoration: none;
}

.collection-card h3 {
  margin: 0 0 5px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
}

.collection-card__meta {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 4px;
}

.collection-card__price {
  font-size: 15px;
  font-weight: 600;
  color: #12352a;
  margin-bottom: 0;
}

.collection-card__price del {
  color: #999;
  font-weight: 400;
}

.collection-card__price ins {
  text-decoration: none;
}

.collection-card__size {
  font-size: 13px;
  color: #12352a;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid #ddd;
}

.collection-card__brand {
  display: none;
}

.collection-card__link {
  color: inherit;
  text-decoration: none;
}

.collection-card__content {
  padding: 10px 0 0;
}

.collection-pagination {
  margin-top: 48px;
}

@media (max-width: 1000px) {
  .collection-content {
    grid-template-columns: 1fr;
  }

  .collection-filter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .filter-bar-center {
    grid-column: 1;
    text-align: left;
  }

  .filter-bar-right {
    grid-column: 2;
    grid-row: 1;
  }

  .filter-bar-left {
    grid-column: 1 / -1;
    margin-top: 12px;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ABOUT PAGE */

.about-page {
  padding: 80px 0;
  background: #fff;
}

.page-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.about-hero,
.about-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px;
  align-items: start;
}

.about-hero {
  margin-bottom: 140px;
}

.about-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-hero h1,
.about-story h2 {
  margin: 0 0 28px;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 700;
  color: #12352a;
  line-height: 1;
  letter-spacing: -2px;
  max-width: 600px;
}

.about-hero p,
.about-story p {
  margin: 0 0 20px;
  max-width: 520px;
  color: #555;
  font-size: 16px;
  line-height: 1.85;
}

.about-hero__image,
.about-story__image {
  width: 100%;
}

.about-hero__image img,
.about-story__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.about-story__text {
  padding-top: 20px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 15px 28px;
  background: #050505;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: opacity .2s ease;
}

.about-cta:hover {
  opacity: .85;
}

@media (max-width: 900px) {

  .about-hero,
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero {
    margin-bottom: 80px;
  }

  .about-story__image {
    order: -1;
  }

  .about-hero h1,
  .about-story h2 {
    font-size: 36px;
  }
}

/* CONTACT PAGE */

.contact-page {
  padding: 70px 0 100px 0;
  background: #fff;
}

.page-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.contact-hero {
  display: grid;
  grid-template-columns: .95fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
}

.contact-hero h1 {
  margin: 0 0 22px;
  color: #12352a;
  font-size: clamp(52px, 6vw, 82px);
  line-height: .9;
  letter-spacing: -4px;
}

.contact-hero p {
  margin: 0;
  max-width: 540px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.contact-hero__image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 10px;
  background: #eee;
  display: block;
}

.contact-hero__image {
  margin-bottom: 40px;
}

.contact-main {
  display: grid;
  grid-template-columns: .85fr 1.7fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 90px;
}

.contact-info-panel,
.contact-form-box {
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  background: #fff;
}

.contact-info-panel {
  padding: 34px 28px;
  align-self: center;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid #eee;
}

.contact-info-item:first-child {
  padding-top: 0;
}

.contact-info-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #12352a;
  color: #fff;
  font-size: 22px;
}

.contact-info-item h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.contact-info-item p,
.contact-info-item a {
  display: block;
  margin: 0 0 5px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.contact-info-item a:hover {
  color: #111;
}

.contact-form-box {
  padding: 42px 44px;
}

.contact-form-box h2 {
  color: #12352a;
  margin: 0 0 30px;
  font-size: 32px;
  letter-spacing: -1px;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  color: #111;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #111;
}

.contact-form button {
  width: fit-content;
  padding: 16px 30px;
  border: 0;
  border-radius: 10px;
  background: #12352a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-benefits {
  border-top: 1px solid #eee;
  background: #fafafa;
  padding: 42px 0;
}

.contact-benefits__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-benefits__inner div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
}

.contact-benefits__inner span {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #12352a;
  color: #fff;
}

.contact-benefits__inner svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.contact-benefits__inner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-benefits__inner p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 950px) {
  .contact-hero,
  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-benefits__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-page {
    padding-top: 40px;
  }

  .contact-hero {
    gap: 34px;
  }

  .contact-hero h1 {
    letter-spacing: -2px;
  }

  .contact-hero__image img {
    height: 300px;
  }

  .contact-form-box {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-benefits__inner {
    grid-template-columns: 1fr;
  }
}

/* ============ SINGLE PRODUCT ============ */

.single-product-page {
  background: #fff;
  color: #111;
  padding-top: 54px;
}

.product-single,
.product-info-grid,
.product-related-section,
.single-product-page .trust-single-transparent {
  max-width: 1180px;
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: #888;
  font-size: 13px;
  flex-wrap: wrap;
}

.product-breadcrumbs a {
  color: #777;
  text-decoration: none;
}

.product-breadcrumbs a:hover {
  color: #111;
}

/* ============ TOP LAYOUT ============ */

.product-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ============ GALLERY (kuvat pinottu pystyyn) ============ */

.product-gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 90px;
}

.product-main-image-new {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1 / 1;
}

.product-main-image-new img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #12352a;
  color: #fff;
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.product-image-badge svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}

.product-image-badge.is-sold {
  background: #111;
  color: #fff;
}

.product-image-badge.is-condition {
  background: #1a5c35;
  color: #fff;
}

.product-thumbnails-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.product-thumb-new {
  cursor: pointer;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #f4f4f4;
  aspect-ratio: 1 / 1;
  transition: border-color .15s ease;
}

.product-thumb-new:hover {
  border-color: #ccc;
}

.product-thumb-new.is-active {
  border-color: #12352a;
}

.product-thumb-new img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ============ SUMMARY (oikea sticky-paneeli) ============ */

.product-summary-new {
  position: sticky;
  top: 90px;
}

.product-summary-inner {
  padding: 4px 0;
}

.product-summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.product-brand {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #777;
}

.product-fav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s ease;
}

.product-fav:hover { border-color: #111; }

.product-fav svg {
  width: 18px;
  height: 18px;
  stroke: #111;
  fill: transparent;
  transition: .2s ease;
}

.product-fav.is-active svg {
  fill: #e63946;
  stroke: #e63946;
}

.product-brand-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #777;
}

.product-summary-new h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  font-weight: 900;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 26px;
  font-weight: 900;
}

.product-price del {
  color: #999;
  font-size: 17px;
  font-weight: 700;
}

.product-price ins { text-decoration: none; }

.product-price-note {
  font-size: 12px;
  font-weight: 500;
  color: #888;
  letter-spacing: .02em;
}

/* Varastotila */
.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 24px;
  background: #e8f2ee;
  color: #12352a;
}

.product-stock.out-stock {
  background: #f5f5f5;
  color: #777;
}

.product-stock .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

/* Kunto-palkki */
.product-condition-bar {
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}

.product-condition-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.product-condition-label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-condition-value {
  font-size: 13px;
  font-weight: 700;
  color: #555;
}

.product-condition-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.product-condition-track span {
  height: 6px;
  border-radius: 3px;
  background: #e5e5e5;
}

.product-condition-track span.is-filled {
  background: #111;
}

/* Koko */
.product-size { margin-bottom: 26px; }

.product-size-label {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-size__list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-size__list span {
  width: 52px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #999;
  font-size: 14px;
}

.product-size__list span:not(.is-selected)::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 1.5px;
  background: #ccc;
  transform: rotate(-20deg);
  top: 50%;
  left: -10%;
}

.product-size__list .is-selected {
  background: #12352a;
  border-color: #12352a;
  color: #fff;
}

.product-size__list .is-selected::after { display: none; }

/* Cart */
.product-cart {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
}

.product-cart .quantity { display: none !important; }

.product-cart .single_add_to_cart_button {
  flex: 1;
  height: 56px;
  border: 0;
  border-radius: 6px;
  background: #12352a;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .2s ease;
}

.product-cart .single_add_to_cart_button:hover { background: #1a4d3c; }
.product-cart .single_add_to_cart_button:disabled { background: #888; cursor: not-allowed; }

.product-cart .single_add_to_cart_button svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

/* Meta-lista */
.product-meta-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 18px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.product-meta-list li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 13px;
}

.product-meta-list span { color: #888; }
.product-meta-list strong { color: #111; font-weight: 700; }

/* Perks */

.product-trust-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
}

.product-trust-card > svg {
  width: 56px;
  height: 56px;
  padding: 13px;
  border-radius: 50%;
  background: #12352a;
  stroke: #fff;
  flex-shrink: 0;
}

.product-trust-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.3px;
}

.product-trust-card p {
  margin: 0 0 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
}

.product-trust-card a {
  color: #000;
  font-weight: 900;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.product-trust-card a:hover { text-decoration: underline; }


/* ============ INFO GRID (accordion + sivukortit) ============ */

.product-info-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 24px;
  align-items: start;
}

.product-accordion-card,
.product-cta-card-new {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 32px;
  background: #fff;
}

.product-section-title {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.5px;
}

.product-accordion details {
  border-top: 1px solid #eee;
}

.product-accordion details:last-child {
  border-bottom: 1px solid #eee;
}

.product-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 800;
}

.product-accordion summary::-webkit-details-marker { display: none; }

.product-accordion summary span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.product-accordion summary svg {
  width: 18px;
  height: 18px;
  stroke: #111;
}

.product-accordion .acc-icon {
  transition: transform .25s ease;
}

.product-accordion details[open] .acc-icon {
  transform: rotate(180deg);
}

.product-accordion .acc-body {
  padding: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

.product-accordion .acc-body p { margin: 0 0 12px; }

.acc-checklist {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.acc-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: #333;
}

.acc-checklist svg {
  width: 14px;
  height: 14px;
  stroke: #12352a;
  flex-shrink: 0;
}

/* Side cards */
.product-side-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 90px;
}

.product-cta-card-new {
  text-align: center;
  padding: 28px 26px;
}

.product-cta-card-new svg {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  stroke: #111;
}

.product-cta-card-new h2 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -.3px;
}

.product-cta-card-new p {
  margin: 0 0 16px;
  color: #555;
  font-size: 13px;
  line-height: 1.6;
}

.product-cta-card-new a {
  color: #000;
  font-weight: 900;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.product-cta-card-new a:hover { text-decoration: underline; }

.product-cta-secondhand {
  background: #12352a;
  border-color: #12352a;
  color: #fff;
}

.product-cta-secondhand svg {
  stroke: #fff;
}

.product-cta-secondhand h2 {
  color: #fff;
}

.product-cta-secondhand p {
  color: rgba(255,255,255,.85);
}

.product-cta-secondhand a {
  color: rgba(255,255,255,.9);
}

.product-cta-secondhand .impact-stats {
  background: rgba(255,255,255,.1);
}

.product-cta-secondhand .impact-stats strong {
  color: #fff;
}

.product-cta-secondhand .impact-stats span {
  color: rgba(255,255,255,.72);
}

.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 0 18px;
  padding: 14px;
  background: #fff;
  border-radius: 6px;
}

.impact-stats strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #12352a;
  letter-spacing: -.5px;
}

.impact-stats span {
  font-size: 11px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ============ RELATED PRODUCTS ============ */

.product-related-section {
  margin-top: 90px;
  margin-bottom: 60px;
}

.product-related-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
}

.product-related-head h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.6px;
  color: #12352a;
}

.product-related-head a {
  color: #12352a;
  font-weight: 800;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.product-related-head a:hover { text-decoration: underline; }

.related-products .onsale,
.related-products .button.add_to_cart_button {
  display: none;
}

.related-products li.product {
  text-align: left;
}

.related-products li.product a img {
  border-radius: 6px;
  transition: opacity .2s ease;
}

.related-products li.product a img:hover {
  opacity: .85;
}

.related-products .woocommerce-loop-product__title {
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: -.2px;
  color: #000;
}

.related-products .price,
.related-products .price del,
.related-products .price ins,
.related-products .price .amount {
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
  color: #000;
  text-decoration: none;
}

.related-products .price del {
  display: none;
}
.related-products .price ins {
  text-decoration: none;
  color: #000;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 950px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-gallery-stack,
  .product-summary-new {
    position: static;
  }

  .product-info-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .product-perks-new {
    grid-template-columns: 1fr;
  }

  .product-related-head h2 { font-size: 22px; }
}

@media (max-width: 600px) {
  .product-thumbnails-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-accordion-card,
  .product-cta-card-new {
    padding: 22px;
  }
}


/* TRUST ONLY ON SINGLE PRODUCT */

.single-product-page .trust-single-transparent {
  background: transparent;
  border: 1px solid #12352a;
  margin-top: 44px;
  margin-bottom: 0;
}

.single-product-page .trust-single-transparent .trust-item:not(:last-child)::after {
  background: #12352a;
}

.single-product-page .trust-single-transparent .trust-item svg {
  stroke: #12352a;
}

.single-product-page .trust-single-transparent .trust-item strong {
  color: #12352a;
}

.single-product-page .trust-single-transparent .trust-item span {
  color: #555;
}


/* TRUST ONLY ON CONTACT */

.contact-page .trust-single-transparent {
  background: transparent;
  border: 1px solid #12352a;
  margin-top: 44px;
  margin-bottom: 0;
}

.contact-page .trust-single-transparent .trust-item:not(:last-child)::after {
  background: #12352a;
}

.contact-page .trust-single-transparent .trust-item svg {
  stroke: #12352a;
}

.contact-page .trust-single-transparent .trust-item strong {
  color: #12352a;
}

.contact-page .trust-single-transparent .trust-item span {
  color: #555;
}

/* RESPONSIVE */

@media (max-width: 950px) {
  .product-layout,
  .product-info-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-new {
    grid-template-columns: 1fr;
  }

  .product-thumbnails-new {
    flex-direction: row;
    order: 2;
    overflow-x: auto;
  }

  .product-thumb-new {
    width: 82px;
    flex: 0 0 82px;
  }

  .product-summary-new h1 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }
}

@media (max-width: 650px) {
  .single-product-page {
    padding-top: 32px;
  }

  .product-layout {
    gap: 28px;
  }

  .product-main-image-new {
    aspect-ratio: 1 / 1.08;
  }

  .product-summary-new h1 {
    font-size: 34px;
  }

  .product-price {
    font-size: 28px;
  }

  .product-cart button {
    height: 56px;
  }

  .product-info-grid {
    margin-top: 32px;
  }

  .product-tabs-card,
  .product-cta-card-new {
    padding: 22px;
  }

  .product-tabs {
    gap: 24px;
  }

  .single-product-page .trust-single-transparent {
    width: calc(100% - 32px);
  }
}

.single-product-page .product-info-grid {
  margin-top: 40px !important;
}

.single-product-page .trust-single-transparent {
  margin-bottom: 40px !important;
}





.frontpage-dark {
  background: linear-gradient(180deg, #151515 0%, #101010 45%, #0b0b0b 100%);
  color: #fff;
  padding-bottom: 100px;
}

.home-section {
  padding: 34px 0;
}

/* dark product cards */
.frontpage-dark .product-card {
  background: #f5f5f5;
  color: #111;
  border: 0;
}

.frontpage-dark .category-card {
  border: 1px solid rgba(255,255,255,.12);
}

/* trust */
.trust-dark {
  margin-top: 35px;
  margin-bottom: 35px;
  background: #f3eee7;
  color: #111;
  grid-template-columns: repeat(4, 1fr);
}

.trust-dark div {
  border-right: 1px solid rgba(0,0,0,.12);
}

.trust-dark div:last-child {
  border-right: 0;
}

/* brands */
.brand-list-dark {
  grid-template-columns: repeat(4, 1fr);
}

.brand-list-dark span {
  padding: 28px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.03);
}

/* Ralph Lauren spotlight */
.rl-spotlight {
  min-height: 360px;
  margin-top: 20px;
  margin-bottom: 100px;
  padding: 58px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #12352a 0%, #12352a 40%, rgba(18,53,42,0) 72%),
    url("assets/images/spotlight.png") center / cover no-repeat;
}

.rl-spotlight span {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.rl-spotlight h2 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .95;
  letter-spacing: -3px;
}

.rl-spotlight p {
  max-width: 420px;
  margin: 0 0 24px;
  color: #ddd;
  line-height: 1.7;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: #f5f0ea;
  color: #111;
}

.footer-newsletter__image {
  max-height: 470px;
  overflow: hidden;
}

.footer-newsletter__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-newsletter__content {
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-newsletter__content span {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.footer-newsletter__content h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 74px);
  color: #12352a;
  line-height: .92;
  letter-spacing: -3px;
}

.footer-newsletter__content p {
  max-width: 440px;
  margin: 0 0 28px;
  color: #555;
  line-height: 1.7;
}

.footer-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 520px;
}

.footer-newsletter input {
  height: 56px;
  padding: 0 18px;
  border: 1px solid #ddd;
  background: #fff;
  font: inherit;
}

.footer-newsletter button {
  height: 56px;
  padding: 0 32px;
  border: 0;
  background: #12352a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}



@media (max-width: 900px) {
  .curated-grid {
    grid-template-columns: 1fr;
  }

  .brand-list-dark {
    grid-template-columns: repeat(2, 1fr);
  }

  .rl-spotlight {
    padding: 34px;
  }
}

@media (max-width: 600px) {
  .trust-dark {
    grid-template-columns: 1fr 1fr;
  }

  .brand-list-dark {
    grid-template-columns: 1fr;
  }
}

.page .content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* === FRONTPAGE LIGHT THEME === */

.frontpage-light {
  background: #ffffff;
  color: #111;
  padding-bottom: 100px;
}

/* Hero buttons */
.btn--primary {
  background: #12352a;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}

.btn--primary:hover {
  background: #1a4d3c;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}

.btn--ghost:hover {
  background: rgba(255,255,255,.12);
}

/* RL spotlight always has white text regardless of page theme */
.rl-spotlight {
  color: #fff;
}

/* Trust – light variant */
.trust-light {
  border-color: #12352a;
}

.trust-light .trust-item:not(:last-child)::after {
  background: #12352a;
}

.trust-light .trust-item svg {
  stroke: #12352a;
}

.trust-light .trust-item strong {
  color: #12352a;
}

.trust-light .trust-item span {
  color: #666;
}

/* Brand list – light variant */
.brand-list-light .brand-item {
  background: #fff;
  border-color: rgba(0,0,0,.06);
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
}

.brand-list-light .brand-item:hover {
  border-color: rgba(0,0,0,.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.11);
}

.brand-list-light .brand-item img {
  filter: none;
  opacity: 1;
}

/* === UUTUUDET CAROUSEL === */

.uutuudet-section .container {
  width: min(1240px, calc(100% - 40px));
}

.uutuudet-section {
  padding: 44px 0 52px;
}

.uutuudet-box {
  background: #f5f0ea;
  border: 1px solid rgba(18,53,42,.08);
  border-radius: 24px;
  padding: 36px;
}

@media (max-width: 650px) {
  .uutuudet-box {
    padding: 20px;
    border-radius: 16px;
  }
}

.uutuudet-carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.uutuudet-carousel-head h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  color: #12352a;
}

.carousel-see-all {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #12352a;
  text-decoration: none;
}

.carousel-see-all:hover {
  text-decoration: underline;
}

.uutuudet-carousel-wrapper {
  position: relative;
}

.uutuudet-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.uutuudet-carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  flex: 0 0 calc((100% - 5 * 16px) / 6);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.carousel-card__image {
  aspect-ratio: 1 / 1.15;
  background: #e8e2d9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.carousel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.carousel-card:hover .carousel-card__image img {
  transform: scale(1.04);
}

.carousel-card__info h3 {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #111;
}

.carousel-card__info strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #12352a;
}

.carousel-card__info strong del {
  color: #999;
  font-weight: 400;
  font-size: 12px;
  margin-right: 3px;
}

.carousel-card__info strong ins {
  text-decoration: none;
}

.carousel-arrow {
  position: absolute;
  right: -16px;
  top: 36%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #12352a;
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(18,53,42,.25);
  z-index: 2;
  transition: background .2s ease, box-shadow .2s ease;
}

.carousel-arrow:hover {
  background: #1a4d3c;
  box-shadow: 0 6px 20px rgba(18,53,42,.35);
}

@media (max-width: 1000px) {
  .carousel-card {
    flex: 0 0 calc((100% - 3 * 16px) / 4);
  }
}

@media (max-width: 650px) {
  .carousel-card {
    flex: 0 0 calc((100% - 16px) / 2.4);
  }

  .carousel-arrow {
    right: 0;
  }
}