/*
Theme Name: Koza Stil Store
Theme URI: https://kozastil.com/
Description: Standalone minimalist fashion catalogue theme for Koza Stil.
Author: Koza Stil
Version: 2.0.0
Text Domain: koza-stil
*/

:root {
  --koza-bg: #ffffff;
  --koza-stage: #f4f4f2;
  --koza-text: #111111;
  --koza-muted: #6b6b6b;
  --koza-line: #d8d8d8;
  --koza-max: 1760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--koza-bg);
  color: var(--koza-text);
}

.wp-site-blocks {
  padding: 0;
}

.koza-header {
  background: #fff;
  border-bottom: 1px solid var(--koza-line);
}

.koza-header__inner {
  min-height: 64px;
  padding: 0 24px;
}

.koza-header .wp-block-site-logo {
  margin: 0;
}

.koza-header .wp-block-site-logo img {
  width: auto;
  max-height: 42px;
}

.koza-header .wp-block-navigation {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.koza-main {
  width: 100%;
  max-width: var(--koza-max);
  margin: 0 auto;
  padding: 0 24px 72px;
}

.koza-shop-title {
  margin: 46px 0 38px;
  text-align: center;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.035em;
}

.koza-shop-rule {
  margin: 0 -24px;
  border-top: 1px solid var(--koza-line);
}

.koza-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--koza-line);
  border-bottom: 1px solid var(--koza-line);
}

.koza-product-card {
  min-width: 0;
  background: #fff;
}

.koza-product-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.koza-product-card__stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  padding: 8%;
  overflow: hidden;
  background: var(--koza-stage);
}

.koza-product-card__stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 180ms ease;
}

.koza-product-card__link:hover .koza-product-card__stage img {
  transform: scale(1.018);
}

.koza-product-card__info {
  min-height: 88px;
  padding: 15px 16px 20px;
}

.koza-product-card__name {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.koza-product-card__price {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}

.koza-empty {
  padding: 64px 24px;
  text-align: center;
  color: var(--koza-muted);
  border-bottom: 1px solid var(--koza-line);
}

.koza-single {
  width: 100%;
  max-width: var(--koza-max);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.koza-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
  gap: 56px;
  align-items: start;
}

.koza-single-media {
  background: var(--koza-stage);
  padding: 6%;
}

.koza-single-media .wp-block-post-featured-image,
.koza-single-media figure { margin: 0; }

.koza-single-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: contain;
}

.koza-single-info {
  position: sticky;
  top: 32px;
  padding-top: 16px;
}

.koza-single-info .wp-block-post-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.koza-single-price {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}

.koza-single-info .wp-block-post-content {
  font-size: 15px;
  line-height: 1.6;
}

.koza-page {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.koza-page .wp-block-post-title {
  margin-bottom: 32px;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -.035em;
}

.koza-footer {
  border-top: 1px solid var(--koza-line);
  padding: 24px;
  font-size: 12px;
  color: var(--koza-muted);
}

@media (max-width: 980px) {
  .koza-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .koza-single-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .koza-single-info {
    position: static;
  }
}

@media (max-width: 600px) {
  .koza-header__inner {
    min-height: 56px;
    padding: 0 14px;
  }

  .koza-main,
  .koza-single,
  .koza-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .koza-shop-title {
    margin: 32px 0 28px;
    font-size: 30px;
  }

  .koza-shop-rule {
    margin-left: -14px;
    margin-right: -14px;
  }

  .koza-product-card__info {
    min-height: 78px;
    padding: 12px 10px 16px;
  }

  .koza-product-card__name,
  .koza-product-card__price {
    font-size: 13px;
  }
}
