/*
Theme Name: Grawersky
Description: Motyw potomny Blocksy dla sklepu Grawersky
Author: Grawersky
Template: blocksy
Version: 1.0.1
Text Domain: grawersky
*/

/* =========================================================
   USTAWIENIA GLOBALNE
   ========================================================= */

:root {
  --grawersky-bg: #f7f1e9;
  --grawersky-cream: #fbf8f4;
  --grawersky-black: #0e0e0e;
  --grawersky-gold: #b77a35;
  --grawersky-white: #ffffff;
  --grawersky-border: rgba(17, 17, 17, 0.15);
  --grawersky-container: 1720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--grawersky-cream);
  color: var(--grawersky-black);
}

img {
  max-width: 100%;
  height: auto;
}

.grawersky-home {
  overflow: hidden;
}

.grawersky-container {
  width: min(calc(100% - 80px), var(--grawersky-container));
  margin-inline: auto;
}

/* =========================================================
   HERO
   ========================================================= */

.grawersky-hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(183, 122, 53, 0.13),
      transparent 34%
    ),
    linear-gradient(
      90deg,
      #fbf8f4 0%,
      #f8f1e8 49%,
      #eadbc9 100%
    );
}

.grawersky-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(
      35deg,
      rgba(80, 50, 20, 0.04) 0,
      rgba(80, 50, 20, 0.04) 1px,
      transparent 1px,
      transparent 7px
    );
}

/* =========================================================
   NAGŁÓWEK
   ========================================================= */

.grawersky-header {
  position: relative;
  z-index: 20;
  min-height: 90px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.grawersky-header__inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 30px;
}

.grawersky-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--grawersky-black);
  text-decoration: none;
}

.grawersky-logo__icon {
  color: var(--grawersky-gold);
  font-size: 36px;
  line-height: 1;
}

.grawersky-logo__text {
  display: flex;
  flex-direction: column;
}

.grawersky-logo__text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.grawersky-logo__text small {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.grawersky-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.grawersky-nav a {
  color: #161616;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 200ms ease;
}

.grawersky-nav a:hover {
  color: var(--grawersky-gold);
}

.grawersky-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.grawersky-header__cta {
  padding: 13px 19px;
  border-radius: 4px;
  background: var(--grawersky-black);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 200ms ease,
    transform 200ms ease;
}

.grawersky-header__cta:hover {
  background: var(--grawersky-gold);
  color: #ffffff;
  transform: translateY(-1px);
}

.grawersky-icon-button {
  width: 34px;
  height: 34px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--grawersky-black);
  font-size: 21px;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 200ms ease,
    transform 200ms ease;
}

.grawersky-icon-button:hover {
  color: var(--grawersky-gold);
  transform: translateY(-1px);
}

/* =========================================================
   ZAWARTOŚĆ HERO
   ========================================================= */

.grawersky-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 700px;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
}

.grawersky-hero__content {
  padding: 40px 0 70px;
}

.grawersky-hero__content h1 {
  max-width: 680px;
  margin: 0;
  color: #121212;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 4.3vw, 78px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.grawersky-hero__content h1 span {
  color: var(--grawersky-gold);
}

.grawersky-hero__content p {
  margin: 28px 0 0;
  color: #2b2b2b;
  font-size: 17px;
  line-height: 1.65;
}

.grawersky-hero__buttons {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.grawersky-button {
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    color 200ms ease,
    border-color 200ms ease;
}

.grawersky-button:hover {
  transform: translateY(-2px);
}

.grawersky-button--dark {
  background: var(--grawersky-black);
  color: #ffffff;
}

.grawersky-button--dark:hover {
  background: var(--grawersky-gold);
  color: #ffffff;
}

.grawersky-button--light {
  border: 1px solid rgba(17, 17, 17, 0.5);
  background: rgba(255, 255, 255, 0.45);
  color: var(--grawersky-black);
}

.grawersky-button--light:hover {
  border-color: var(--grawersky-gold);
  color: var(--grawersky-gold);
}

.grawersky-rating {
  margin-top: 31px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
}

.grawersky-rating__avatars {
  display: flex;
}

.grawersky-rating__avatars span {
  width: 29px;
  height: 29px;
  margin-left: -6px;
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, #825632, #d4ad82);
  color: transparent;
}

.grawersky-rating__avatars span:first-child {
  margin-left: 0;
}

.grawersky-rating__stars {
  color: var(--grawersky-gold);
  letter-spacing: 2px;
}

.grawersky-rating__text {
  color: #2a2a2a;
}

/* =========================================================
   WIZUALIZACJA PRODUKTÓW W HERO
   ========================================================= */

.grawersky-hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 700px;
}

.grawersky-product-box {
  position: absolute;
  z-index: 4;
  top: 35px;
  left: 2%;
  width: min(350px, 36vw);
  aspect-ratio: 0.88;
  padding: 18px;
  border: 5px solid #0b0b0b;
  border-radius: 5px;
  background: #111111;
  transform: rotate(-4deg);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.36);
}

.grawersky-product-box::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at center,
      #171717 0 38%,
      transparent 39%
    ),
    repeating-radial-gradient(
      ellipse at center,
      #090909 0 13px,
      #242424 14px 23px
    );
  opacity: 0.95;
}

.grawersky-product-box__inner {
  position: absolute;
  z-index: 2;
  inset: 76px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: linear-gradient(
    90deg,
    #191919,
    #474747 46%,
    #181818
  );
  color: #f7efe4;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.18);
}

.grawersky-product-box__inner span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
}

.grawersky-product-box__inner strong {
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px;
  font-weight: 500;
}

.grawersky-product-box__inner small {
  margin-top: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.grawersky-wallet {
  position: absolute;
  z-index: 3;
  top: 95px;
  left: 42%;
  width: min(340px, 34vw);
  height: 365px;
  padding: 86px 42px 0;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    #3a180d,
    #7a3d1d 45%,
    #321208
  );
  color: #9d5c2c;
  text-align: center;
  transform: rotate(8deg);
  box-shadow:
    0 25px 40px rgba(0, 0, 0, 0.34),
    inset 0 0 0 2px rgba(240, 184, 114, 0.16);
}

.grawersky-wallet::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(209, 139, 76, 0.5);
  border-radius: 9px;
}

.grawersky-wallet span,
.grawersky-wallet strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
}

.grawersky-wallet span {
  font-size: 19px;
  letter-spacing: 0.05em;
}

.grawersky-wallet strong {
  margin-top: 10px;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.1;
}

.grawersky-pen {
  position: absolute;
  z-index: 7;
  right: -3%;
  bottom: 72px;
  width: 330px;
  height: 18px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    #d2a054 0 8%,
    #0b0b0b 9% 72%,
    #bd812d 73% 85%,
    #111111 86%
  );
  transform: rotate(-17deg);
  box-shadow: 0 12px 17px rgba(0, 0, 0, 0.32);
}

.grawersky-decoration {
  position: absolute;
  z-index: 1;
  top: 28px;
  right: -4%;
  width: 330px;
  height: 260px;
  opacity: 0.7;
  background:
    radial-gradient(
      circle at 30% 50%,
      #b87a33 0 3px,
      transparent 4px
    ),
    radial-gradient(
      circle at 42% 31%,
      #b87a33 0 3px,
      transparent 4px
    ),
    radial-gradient(
      circle at 58% 42%,
      #b87a33 0 3px,
      transparent 4px
    ),
    linear-gradient(
      72deg,
      transparent 47%,
      #b87a33 48% 49%,
      transparent 50%
    );
}

/* =========================================================
   PASEK ZALET
   ========================================================= */

.grawersky-trust {
  position: relative;
  z-index: 10;
  background: #101010;
  color: #ffffff;
}

.grawersky-trust__grid {
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.grawersky-trust__item {
  min-height: 104px;
  padding: 19px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.grawersky-trust__item:last-child {
  border-right: 0;
}

.grawersky-trust__icon {
  color: var(--grawersky-gold);
  font-size: 41px;
  line-height: 1;
}

.grawersky-trust__item div:last-child {
  display: flex;
  flex-direction: column;
}

.grawersky-trust__item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.grawersky-trust__item span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 13px;
}

/* =========================================================
   KATEGORIE
   ========================================================= */

.grawersky-categories {
  padding: 110px 0 125px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(183, 122, 53, 0.08),
      transparent 34%
    ),
    #fbf8f4;
}

.grawersky-section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.grawersky-section-heading__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--grawersky-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.grawersky-section-heading h2 {
  margin: 0;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.grawersky-section-heading p {
  max-width: 620px;
  margin: 20px auto 0;
  color: #55504a;
  font-size: 16px;
  line-height: 1.7;
}

.grawersky-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 285px;
  gap: 18px;
}

.grawersky-category-card {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 7px;
  background: #d8cab9;
  color: #ffffff;
  text-decoration: none;
  isolation: isolate;
}

.grawersky-category-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.grawersky-category-card--wide {
  grid-column: span 2;
}

.grawersky-category-card__image {
  position: absolute;
  inset: 0;
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.grawersky-category-card:hover .grawersky-category-card__image {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.grawersky-category-card__overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 15%,
    rgba(0, 0, 0, 0.08) 48%,
    rgba(0, 0, 0, 0.76) 100%
  );
}

.grawersky-category-card__content {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 30px;
  left: 34px;
}

.grawersky-category-card__content > span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.grawersky-category-card__content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
}

.grawersky-category-card--large
.grawersky-category-card__content h3 {
  font-size: clamp(42px, 4vw, 60px);
}

.grawersky-category-card__content strong {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.grawersky-category-card__content strong span {
  display: inline-block;
  font-size: 20px;
  transition: transform 250ms ease;
}

.grawersky-category-card:hover
.grawersky-category-card__content strong span {
  transform: translateX(6px);
}

/* =========================================================
   TŁA KATEGORII
   ========================================================= */

.grawersky-category-card__image--him {
  background:
    radial-gradient(
      circle at 28% 32%,
      rgba(208, 163, 102, 0.35),
      transparent 22%
    ),
    linear-gradient(145deg, #604127, #16110e 65%);
}

.grawersky-category-card__image--her {
  background:
    radial-gradient(
      circle at 70% 24%,
      rgba(255, 255, 255, 0.3),
      transparent 20%
    ),
    linear-gradient(145deg, #c6a993, #755747);
}

.grawersky-category-card__image--birthday {
  background:
    radial-gradient(
      circle at 72% 24%,
      rgba(244, 204, 124, 0.34),
      transparent 22%
    ),
    linear-gradient(140deg, #17120d, #7a4a20);
}

.grawersky-category-card__image--anniversary {
  background:
    radial-gradient(
      circle at 30% 28%,
      rgba(255, 226, 179, 0.22),
      transparent 22%
    ),
    linear-gradient(140deg, #765139, #2e1b13);
}

.grawersky-category-card__image--all {
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(210, 151, 77, 0.25),
      transparent 24%
    ),
    linear-gradient(140deg, #1b1b1b, #47301e);
}

/* =========================================================
   TYMCZASOWE PRODUKTY W KATEGORIACH
   ========================================================= */

.grawersky-category-card__mockup {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 230px;
  min-height: 290px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #2f1a0f, #6e3b1c);
  color: #cf9252;
  text-align: center;
  transform: translate(-50%, -50%) rotate(7deg);
  box-shadow:
    0 28px 45px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.grawersky-category-card__mockup::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(221, 163, 96, 0.46);
  border-radius: 10px;
}

.grawersky-category-card__mockup strong,
.grawersky-category-card__mockup small {
  position: relative;
  z-index: 2;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
}

.grawersky-category-card__mockup strong {
  font-size: 32px;
  font-weight: 400;
}

.grawersky-category-card__mockup small {
  margin-top: 12px;
  font-size: 14px;
}

.grawersky-category-card__mockup--light {
  left: 55%;
  width: 150px;
  min-height: 205px;
  background: linear-gradient(145deg, #f7e7d8, #c7a78f);
  color: #76523c;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.grawersky-category-card__mockup--gold {
  left: 58%;
  width: 155px;
  min-height: 205px;
  background: linear-gradient(145deg, #25211c, #5b4528);
  color: #d8a45f;
  transform: translate(-50%, -50%) rotate(6deg);
}

.grawersky-category-card__mockup--wood {
  left: 60%;
  width: 170px;
  min-height: 210px;
  background: linear-gradient(145deg, #b58559, #624226);
  color: #f0cfaa;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.grawersky-category-card__mockup--black {
  left: 68%;
  width: 270px;
  min-height: 190px;
  background: linear-gradient(145deg, #0d0d0d, #363636);
  color: #d4a25f;
  transform: translate(-50%, -50%) rotate(5deg);
}

/* =========================================================
   RESPONSYWNOŚĆ — MNIEJSZY DESKTOP
   ========================================================= */

@media (max-width: 1400px) {
  .grawersky-container {
    width: min(calc(100% - 60px), var(--grawersky-container));
  }

  .grawersky-header__inner {
    grid-template-columns: 210px 1fr auto;
    gap: 20px;
  }

  .grawersky-nav {
    gap: 18px;
  }

  .grawersky-nav a {
    font-size: 13px;
  }

  .grawersky-product-box {
    width: 320px;
  }

  .grawersky-wallet {
    width: 310px;
  }
}

@media (max-width: 1250px) {
  .grawersky-header__inner {
    grid-template-columns: 190px 1fr auto;
    gap: 18px;
  }

  .grawersky-nav {
    gap: 17px;
  }

  .grawersky-nav a {
    font-size: 12px;
  }

  .grawersky-header__cta {
    display: none;
  }

  .grawersky-hero__inner {
    grid-template-columns: 43% 57%;
  }

  .grawersky-product-box {
    width: 290px;
  }

  .grawersky-wallet {
    left: 45%;
    width: 270px;
    height: 335px;
  }
}

/* =========================================================
   RESPONSYWNOŚĆ — TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .grawersky-categories {
    padding: 90px 0 105px;
  }

  .grawersky-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }

  .grawersky-category-card--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .grawersky-category-card--wide {
    grid-column: span 2;
  }

  .grawersky-category-card--large
  .grawersky-category-card__mockup {
    left: 68%;
    width: 190px;
    min-height: 230px;
  }
}

@media (max-width: 980px) {
  .grawersky-container {
    width: min(calc(100% - 40px), var(--grawersky-container));
  }

  .grawersky-header__inner {
    grid-template-columns: 1fr auto;
  }

  .grawersky-nav {
    display: none;
  }

  .grawersky-hero {
    min-height: auto;
  }

  .grawersky-hero__inner {
    grid-template-columns: 1fr;
  }

  .grawersky-hero__content {
    padding-top: 65px;
    padding-bottom: 35px;
  }

  .grawersky-hero__visual {
    min-height: 520px;
  }

  .grawersky-product-box {
    left: 6%;
    width: 320px;
  }

  .grawersky-wallet {
    left: 48%;
    width: 300px;
  }

  .grawersky-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grawersky-trust__item:nth-child(2) {
    border-right: 0;
  }

  .grawersky-trust__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

/* =========================================================
   RESPONSYWNOŚĆ — TELEFON
   ========================================================= */

@media (max-width: 640px) {
  .grawersky-container {
    width: min(calc(100% - 28px), var(--grawersky-container));
  }

  .grawersky-header {
    min-height: 72px;
  }

  .grawersky-header__inner {
    min-height: 72px;
  }

  .grawersky-logo__icon {
    font-size: 29px;
  }

  .grawersky-logo__text strong {
    font-size: 22px;
  }

  .grawersky-logo__text small {
    display: none;
  }

  .grawersky-header__actions {
    gap: 3px;
  }

  .grawersky-header__actions
  .grawersky-icon-button:nth-of-type(1),
  .grawersky-header__actions
  .grawersky-icon-button:nth-of-type(3) {
    display: none;
  }

  .grawersky-hero__content {
    padding-top: 50px;
  }

  .grawersky-hero__content h1 {
    font-size: 46px;
  }

  .grawersky-hero__content p {
    font-size: 15px;
  }

  .grawersky-hero__buttons {
    flex-direction: column;
  }

  .grawersky-button {
    width: 100%;
  }

  .grawersky-rating {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .grawersky-hero__visual {
    min-height: 395px;
  }

  .grawersky-product-box {
    top: 40px;
    left: 0;
    width: 220px;
  }

  .grawersky-product-box__inner {
    inset: 50px 43px;
  }

  .grawersky-product-box__inner strong {
    font-size: 28px;
  }

  .grawersky-product-box__inner span {
    font-size: 13px;
  }

  .grawersky-product-box__inner small {
    margin-top: 15px;
    font-size: 11px;
  }

  .grawersky-wallet {
    top: 67px;
    right: -32px;
    left: auto;
    width: 210px;
    height: 260px;
    padding: 65px 25px 0;
  }

  .grawersky-wallet span {
    font-size: 13px;
  }

  .grawersky-wallet strong {
    font-size: 22px;
  }

  .grawersky-pen {
    right: -50px;
    bottom: 55px;
    width: 250px;
  }

  .grawersky-trust__grid {
    grid-template-columns: 1fr;
  }

  .grawersky-trust__item,
  .grawersky-trust__item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .grawersky-trust__item:last-child {
    border-bottom: 0;
  }

  .grawersky-categories {
    padding: 72px 0 82px;
  }

  .grawersky-section-heading {
    margin-bottom: 36px;
  }

  .grawersky-section-heading h2 {
    font-size: 42px;
  }

  .grawersky-section-heading p {
    font-size: 15px;
  }

  .grawersky-categories__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }

  .grawersky-category-card--large,
  .grawersky-category-card--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .grawersky-category-card__content {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }

  .grawersky-category-card__content h3,
  .grawersky-category-card--large
  .grawersky-category-card__content h3 {
    font-size: 38px;
  }

  .grawersky-category-card__mockup,
  .grawersky-category-card--large
  .grawersky-category-card__mockup {
    left: 64%;
    width: 165px;
    min-height: 220px;
  }
}
