/* UNAJ Garments — E-commerce Storefront */
:root {
  --shop-bg: #f7f7f5;
  --shop-white: #ffffff;
  --shop-ink: #111111;
  --shop-muted: #6b6b6b;
  --shop-line: #e6e6e3;
  --shop-accent: #111111;
  --shop-sale: #c1121f;
  --shop-ok: #1b7a4e;
  --shop-radius: 12px;
  --shop-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shop-max: min(1240px, calc(100% - 32px));
  --font-ui: "DM Sans", sans-serif;
  --font-brand: "Syne", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.shop-body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--shop-ink);
  background: var(--shop-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

.shop-wrap { width: var(--shop-max); margin-inline: auto; }

/* Buttons — explicit colors so text never inherits wrong */
.shop-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--shop-ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.shop-btn--dark {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}
.shop-btn--dark:hover {
  background: #1b7a4e !important;
  border-color: #1b7a4e !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.shop-btn--light {
  background: #ffffff !important;
  color: #111111 !important;
  border-color: #ffffff !important;
}
.shop-btn--light:hover {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

.shop-btn--outline {
  background: transparent !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.75) !important;
}
.shop-btn--outline:hover {
  background: #ffffff !important;
  color: #111111 !important;
}

.shop-btn--outline-dark {
  background: #ffffff !important;
  color: #111111 !important;
  border-color: #d0d0cc !important;
}
.shop-btn--outline-dark:hover {
  border-color: #111 !important;
  background: #111 !important;
  color: #fff !important;
}

.shop-btn--full { width: 100%; }
.shop-btn--sm { min-height: 40px; padding: 0 16px; font-size: 13px; }

/* Top bar */
.shop-topbar {
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.shop-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  flex-wrap: wrap;
}
.shop-topbar a { color: #fff; opacity: 0.9; }
.shop-topbar a:hover { opacity: 1; }
.shop-topbar__social { display: flex; gap: 14px; }

/* Header */
.shop-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--shop-line);
}
.shop-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}
.shop-logo img { height: 46px; width: auto; }
.shop-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.shop-nav a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  border-radius: 8px;
}
.shop-nav a:hover,
.shop-nav a.is-active { color: #1b7a4e; background: #eef7f2; }

.shop-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--shop-line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 15px;
}
.shop-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--shop-line);
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

/* Drawer */
.shop-drawer { position: fixed; inset: 0; z-index: 1100; visibility: hidden; pointer-events: none; }
.shop-drawer.is-open {
  display: block !important;
  visibility: visible;
  pointer-events: auto;
}
.shop-drawer__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); opacity: 0; transition: opacity .3s; }
.shop-drawer.is-open .shop-drawer__overlay { opacity: 1; }
.shop-drawer__panel {
  position: absolute; top: 0; right: 0; width: min(320px, 90vw); height: 100%;
  background: #fff; padding: 24px; transform: translateX(100%); transition: transform .35s var(--shop-ease);
  display: flex; flex-direction: column; gap: 16px; overflow: auto;
}
.shop-drawer.is-open .shop-drawer__panel { transform: translateX(0); }
.shop-drawer__nav a {
  display: block; padding: 12px 8px; font-weight: 600; border-bottom: 1px solid var(--shop-line);
}

/* Hero e-commerce */
.shop-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
}
.shop-hero__bg {
  position: absolute; inset: 0;
}
.shop-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
}
.shop-hero__content {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  max-width: 560px;
  color: #fff;
}
.shop-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fe0c4;
  margin-bottom: 14px;
}
.shop-hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: #ffffff;
}
.shop-hero p {
  margin: 0 0 28px;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  max-width: 40ch;
}
.shop-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Category pills */
.shop-cats {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--shop-line);
}
.shop-cats__row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.shop-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--shop-line);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  transition: border-color .2s, background .2s, color .2s;
}
.shop-chip:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

/* Section */
.shop-section { padding: 56px 0; }
.shop-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.shop-section__head h2 {
  font-family: var(--font-brand);
  font-size: clamp(24px, 3.5vw, 34px);
  letter-spacing: -0.03em;
  margin: 0 0 4px;
}
.shop-section__head p { margin: 0; color: var(--shop-muted); font-size: 14px; }
.shop-link {
  font-size: 14px;
  font-weight: 700;
  color: #1b7a4e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Product grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.shop-card {
  background: #fff;
  border: 1px solid var(--shop-line);
  border-radius: var(--shop-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--shop-ease), box-shadow .3s;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}
.shop-card__media {
  position: relative;
  aspect-ratio: 3/4;
  background: #ecece8;
  overflow: hidden;
}
.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--shop-ease);
}
.shop-card:hover .shop-card__media img { transform: scale(1.05); }
.shop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.shop-badge--sale { background: var(--shop-sale); }
.shop-card__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.shop-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shop-muted);
}
.shop-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  color: #111;
}
.shop-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}
.shop-card__price strong {
  font-size: 16px;
  font-weight: 800;
  color: #111;
}
.shop-card__price s {
  font-size: 13px;
  color: #999;
}
.shop-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 10px;
}

/* Promo strip */
.shop-promo {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}
.shop-promo__item {
  position: relative;
  min-height: 260px;
  border-radius: var(--shop-radius);
  overflow: hidden;
  color: #fff;
}
.shop-promo__item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.shop-promo__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.25));
}
.shop-promo__copy {
  position: relative; z-index: 1;
  padding: 32px;
  max-width: 320px;
}
.shop-promo__copy h3 {
  font-family: var(--font-brand);
  font-size: 28px;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: #fff;
}
.shop-promo__copy p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}

/* Trust */
.shop-trust {
  background: #fff;
  border-block: 1px solid var(--shop-line);
  padding: 28px 0;
}
.shop-trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.shop-trust__item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.shop-trust__item span {
  font-size: 13px;
  color: var(--shop-muted);
}
.shop-trust__item i {
  font-size: 20px;
  color: #1b7a4e;
  margin-bottom: 8px;
}

/* Footer */
.shop-footer {
  background: #111;
  color: rgba(255,255,255,0.72);
  padding: 56px 0 0;
  margin-top: 24px;
}
.shop-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 28px;
  padding-bottom: 40px;
}
.shop-footer__brand img {
  height: 44px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.shop-footer__brand p { margin: 0; font-size: 14px; max-width: 280px; line-height: 1.65; }
.shop-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.shop-footer__links { display: grid; gap: 10px; }
.shop-footer__links a { font-size: 14px; color: rgba(255,255,255,.7); }
.shop-footer__links a:hover { color: #9fe0c4; }
.shop-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

.shop-float {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop-float a {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.shop-float .wa { background: #25d366; }
.shop-float .ph { background: #111; }

/* Inner pages — About / Contact */
.shop-page-hero {
  background: #fff;
  border-bottom: 1px solid var(--shop-line);
  padding: 40px 0 36px;
}
.shop-page-hero__crumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--shop-muted);
  margin-bottom: 10px;
}
.shop-page-hero__crumb a:hover { color: var(--shop-ok); }
.shop-page-hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.shop-page-hero p {
  margin: 0;
  color: var(--shop-muted);
  max-width: 52ch;
}

.shop-about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}
.shop-about__media {
  border-radius: var(--shop-radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #ecece8;
}
.shop-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-about__copy h2 {
  font-family: var(--font-brand);
  font-size: clamp(24px, 3.5vw, 34px);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  line-height: 1.15;
}
.shop-about__copy p {
  color: var(--shop-muted);
  margin: 0 0 14px;
  font-size: 15px;
}
.shop-about__list {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
}
.shop-about__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 500;
}
.shop-about__list i {
  color: var(--shop-ok);
  margin-top: 3px;
}

.shop-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.shop-stat {
  background: #fff;
  border: 1px solid var(--shop-line);
  border-radius: var(--shop-radius);
  padding: 22px 18px;
  text-align: center;
}
.shop-stat strong {
  display: block;
  font-family: var(--font-brand);
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.shop-stat span {
  font-size: 13px;
  color: var(--shop-muted);
}

.shop-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shop-value {
  background: #fff;
  border: 1px solid var(--shop-line);
  border-radius: var(--shop-radius);
  padding: 24px 20px;
}
.shop-value i {
  font-size: 22px;
  color: var(--shop-ok);
  margin-bottom: 12px;
}
.shop-value h3 {
  font-family: var(--font-brand);
  font-size: 18px;
  margin: 0 0 8px;
}
.shop-value p {
  margin: 0;
  font-size: 14px;
  color: var(--shop-muted);
}

.shop-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.shop-contact-cards {
  display: grid;
  gap: 12px;
}
.shop-contact-card {
  background: #fff;
  border: 1px solid var(--shop-line);
  border-radius: var(--shop-radius);
  padding: 18px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.shop-contact-card i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef7f2;
  color: var(--shop-ok);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.shop-contact-card strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--shop-muted);
  margin-bottom: 4px;
}
.shop-contact-card p,
.shop-contact-card a {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  line-height: 1.45;
}
.shop-contact-card a:hover { color: var(--shop-ok); }

.shop-form {
  background: #fff;
  border: 1px solid var(--shop-line);
  border-radius: var(--shop-radius);
  padding: 28px 24px;
}
.shop-form h2 {
  font-family: var(--font-brand);
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.shop-form > p {
  margin: 0 0 20px;
  color: var(--shop-muted);
  font-size: 14px;
}
.shop-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.shop-form input,
.shop-form textarea {
  width: 100%;
  border: 1px solid var(--shop-line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  background: #fafafa;
  outline: none;
  transition: border-color .2s, background .2s;
}
.shop-form input:focus,
.shop-form textarea:focus {
  border-color: #111;
  background: #fff;
}
.shop-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 14px;
}

.shop-map {
  border-radius: var(--shop-radius);
  overflow: hidden;
  border: 1px solid var(--shop-line);
  background: #fff;
}
.shop-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
  .shop-nav, .shop-header__right .shop-btn { display: none; }
  .shop-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .shop-header__inner { grid-template-columns: auto 1fr auto; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-promo { grid-template-columns: 1fr; }
  .shop-trust__row { grid-template-columns: 1fr 1fr; }
  .shop-footer__grid { grid-template-columns: 1fr 1fr; }
  .shop-about,
  .shop-contact-grid { grid-template-columns: 1fr; }
  .shop-stats { grid-template-columns: 1fr 1fr; }
  .shop-values { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .shop-hero { min-height: 440px; }
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .shop-card__actions { grid-template-columns: 1fr; }
  .shop-trust__row, .shop-footer__grid { grid-template-columns: 1fr; }
  .shop-section { padding: 40px 0; }
  .shop-form__row { grid-template-columns: 1fr; }
  .shop-stats { grid-template-columns: 1fr 1fr; }
}
