  :root {
  --ink: #0b0b0b;
  --muted: #737373;
  --line: #e6e6e2;
  --soft: #f4f4f1;
  --lime: #d9ff43;
  --lime-dark: #627a00;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
label,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1420px, calc(100% - 56px));
  margin-inline: auto;
}


.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 78px;
  color: #929292;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.breadcrumbs strong {
  overflow: hidden;
  max-width: 240px;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(390px, .72fr);
  align-items: start;
  gap: 48px;
  padding-block: 42px 78px;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f0efeb;
  border-radius: 22px;
}

.gallery-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.shot-art {
 display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .45s;
}



.gallery-main figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  color: #666;
  background: rgba(255, 255, 255, .88);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 700;
}

.slide-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 8px;
}

.slide-badges span {
  padding: 8px 10px;
  background: rgba(255, 255, 255, .92);
  border-radius: 999px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, .06);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.slide-badges span:last-child {
  background: var(--lime);
}

.controls {
  position: absolute;
  right: 18px;
  top: 50%;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .1);
  cursor: pointer;
  pointer-events: auto;
  transition: transform .2s ease, background .2s ease;
}

.controls button:hover {
  background: var(--lime);
  transform: scale(1.06);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  background: #f0efeb;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: border .2s ease, transform .2s ease;
}

.gallery-thumb:hover {
  transform: translateY(-2px);
}

.thumb-art {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .45s;
}



.gallery-thumbs small {
  position: absolute;
  right: 7px;
  bottom: 7px;
  z-index: 1;
  padding: 4px 6px;
  background: rgba(255, 255, 255, .9);
  border-radius: 999px;
  pointer-events: none;
  font-size: 8px;
  font-weight: 900;
}

.gallery-thumb.is-active {
  border-color: var(--ink);
}

.product-info {
  position: sticky;
  top: 24px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding-inline: 12px;
  color: #405100;
  background: var(--lime);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.favorite {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 21px;
}

.category {
  margin: 26px 0 11px;
  color: #969696;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.product-info h1 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(38px, 3.5vw, 59px);
  line-height: .98;
  letter-spacing: -.06em;
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 19px;
  color: #858585;
  font-size: 11px;
}

.social-proof .stars {
  color: #f0b600;
  letter-spacing: .03em;
}

.social-proof strong {
  color: var(--ink);
}

.social-proof i {
  width: 3px;
  height: 3px;
  margin-inline: 3px;
  background: #c3c3c3;
  border-radius: 50%;
}

.summary {
  margin: 25px 0;
  color: #686868;
  font-size: 14px;
  line-height: 1.68;
}

.author {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 11px;
  padding-block: 19px;
  border-block: 1px solid var(--line);
}


.author > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.author small {
  color: #999;
  font-size: 9px;
}

.author strong {
  font-size: 12px;
}

.author a {
  font-size: 10px;
  font-weight: 800;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}

.specs div {
  display: grid;
  gap: 5px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.specs div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.specs div:nth-child(even) {
  padding-left: 18px;
}

.specs div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.specs small {
  color: #999;
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.specs strong {
  font-size: 12px;
}

.download-cta {
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 23px;
  padding: 14px 15px;
  color: #fff;
  background: var(--ink);
  border-radius: 14px;
  box-shadow: 0 13px 28px rgba(0, 0, 0, .13);
  transition: transform .25s ease, box-shadow .25s ease;
}

.download-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}

.download-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 20px;
}

.download-cta > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.download-cta strong {
  font-size: 13px;
}

.download-cta small {
  color: #949494;
  font-size: 9px;
}

.cta-arrow {
  margin-right: 5px;
  color: var(--lime);
  font-size: 18px;
}

.signin-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 11px 0 0;
  color: #888;
  font-size: 9px;
}

.signin-note span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: #4285f4;
  background: #f1f1ef;
  border-radius: 50%;
  font-weight: 900;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 15px;
  color: #777;
  font-size: 9px;
}



.section-label {
  color: #8e8e8e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}


.section-heading h2 {
  margin: 17px 0 25px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.06em;
}



.tags {
  display: flex;
  padding: 7px;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.tags a {
  padding: 10px 13px;
  background: var(--soft);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}







.related {
  padding-block: 96px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > a {
  padding-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.related-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .45s;
}

.related-image img{
 
  border-radius: 16px;
}

.related article:hover .related-image {
  transform: translateY(-4px);
}

.related-image span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  background: #fff;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
}

.related-1 {
  background-position: right top;
}

.related-2 {
  background-position: left bottom;
}

.related-3 {
  background-position: right bottom;
}

.related article p {
  margin: 15px 0 7px;
  color: #999;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.related article h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.related article small {
  color: #888;
  font-size: 9px;
}

footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 42px;
  min-height: 135px;
  color: #878787;
  font-size: 10px;
}

.footer-inner {
  color: var(--ink);
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  gap: 19px;
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 1050px) {
 

  .product {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: 30px;
  }

 
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 30px, 720px);
  }

 

  .product {
    grid-template-columns: 1fr;
    padding-top: 26px;
  }

  .product-info {
    position: static;
  }

 

  .footer-inner {
    grid-template-columns: 1fr auto;
    padding-block: 30px;
  }

  .footer-inner p {
    order: 3;
  }

  .footer-inner > span {
    order: 4;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 22px);
  }

  .breadcrumbs {
    min-height: 58px;
    gap: 7px;
  }

  .breadcrumbs a:nth-of-type(2),
  .breadcrumbs a:nth-of-type(3),
  .breadcrumbs span:nth-of-type(n+2) {
    display: none;
  }

  .product {
    gap: 26px;
    padding-bottom: 56px;
  }

  .gallery-stage {
    border-radius: 14px;
  }

  .controls {
    right: 10px;
    left: 10px;
  }

  .controls button {
    width: 40px;
    height: 40px;
  }

  .slide-badges {
    top: 10px;
    left: 10px;
  }

  .slide-badges span {
    padding: 6px 8px;
    font-size: 7px;
  }

  .gallery-main figcaption {
    display: none;
  }

  .gallery-thumbs {
    gap: 6px;
  }

  .gallery-thumb {
    border-radius: 8px;
  }

  .product-info h1 {
    font-size: 42px;
  }

  .specs strong {
    font-size: 10px;
  }

  .download-cta {
    grid-template-columns: 41px 1fr auto;
    padding: 11px;
  }

  .trust-row {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }


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



  .related {
    padding-block: 66px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > a {
    margin-top: 21px;
    white-space: nowrap;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner p {
    order: 2;
  }

  .footer-inner nav {
    order: 3;
  }

  .footer-inner > span {
    order: 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* 777 */

.mockup-ad {
    width: 100%;
}

.mockup-ad--before {
    max-width: 970px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.mockup-ad--sidebar {
    margin-top: 28px;
}

.mockup-ad--after {
    max-width: 970px;
    margin-top: 0;
    margin-bottom: 60px;
}

.mockup-ad-demo {
    width: 100%;
    padding: 24px;
    border: 2px dashed #b8b8b8;
    border-radius: 16px;
    background: #f5f5f5;
    color: #777;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.mockup-ad-demo span {
    font-size: 12px;
    letter-spacing: 2px;
}

.mockup-ad-demo strong {
    color: #111;
    font-size: 24px;
}

.mockup-ad-demo--top {
    min-height: 120px;
}

.mockup-ad-demo--sidebar {
    min-height: 250px;
}

.mockup-ad-demo--bottom {
    min-height: 250px;
}

