:root{
  --bg: #0f0b0b;
  --bg2: #140e0e;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --shadow: 0 18px 45px rgba(0,0,0,0.35);
  --green: #6ad18a;
  --green2: #4fbf76;
  --radius: 18px;
  --maxw: 1100px;
  --header-maxw: 1356px;
  --program-maxw: 1356px;
  --page-pad: 22px;
}

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

html,
body{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 50% 0%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

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

img{
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4{
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.25;
  font-weight: 600;
}

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.muted{
  color: var(--muted);
}

.section{
  padding: 60px 0;
}

.section-alt{
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section h2{
  margin: 0 0 18px;
  font-size: 22px;
  letter-spacing: 0.2px;
}

.card{
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card2), var(--card));
  box-shadow: var(--shadow);
}

/* Header */
.site-header{
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: 14px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
}

.header-inner{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  min-height: calc(2cm + 14px);
  max-width: var(--header-maxw);
  margin: 0 auto;
  padding: 12px var(--page-pad);
  background: transparent;
  box-shadow: none;
}

.brand{
  position: absolute;
  top: 2px;
  left: 22px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 2cm;
  height: 2cm;
  min-width: 2cm;
  margin: 0;
  overflow: visible;
  gap: 0;
}

.header-kickback-logo{
  width: 2cm;
  height: 2cm;
  margin: 0;
  object-fit: contain;
}

.nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 6px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.nav a{
  position: relative;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: 0;
  background: transparent;
  transition: color .18s ease;
}

.nav a::after{
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: var(--green2);
  opacity: 0;
  filter: blur(6px);
  transform: scaleX(0.7);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}

.nav a:hover::after,
.nav a:focus-visible::after{
  opacity: 0.55;
  transform: scaleX(1);
}

.nav a:hover,
.nav a:focus-visible{
  color: #fff;
}

.nav-toggle{
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}

.nav-toggle span{
  display: block;
  height: 2px;
  margin: 5px 0;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
}

/* Main / anchors */
main{
  padding-top: 0;
}

#tooted{
  scroll-margin-top: 90px;
}

#laagrid{
  scroll-margin-top: 90px;
}

/* Hero */
.hero{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: calc(54px + 74px) 0 54px;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background-image: url("hero_harry.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 40%;
  filter: grayscale(70%) contrast(102%) brightness(1.10);
  transform: scale(1.03);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 380px at 50% 55%, rgba(0,0,0,0.06), rgba(0,0,0,0.28) 70%),
    linear-gradient(180deg, rgba(10,8,8,0.14), rgba(10,8,8,0.30));
}

.hero-overlay::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.10) 0 2px, transparent 2px 34px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.10) 0 2px, transparent 2px 34px);
  opacity: 0.22;
  mix-blend-mode: overlay;
}

.hero-overlay::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.14) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.14) 0 1px, transparent 1px 20px);
  background-size: 40px 40px;
  opacity: 0.16;
  mix-blend-mode: overlay;
}

.hero-content{
  position: relative;
  max-width: 1200px;
  padding: 0 var(--page-pad);
  text-align: center;
  transform: translate(-25%, 25%);
  transform-origin: center;
}

.hero h1{
  margin: 0 0 14px;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.hero p{
  max-width: 800px;
  margin: 0 auto 18px;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.6;
}

.hero-cta{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-credit{
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}

.btn:active{
  transform: translateY(1px);
}

.btn-primary{
  color: rgba(10,10,10,0.92);
  background: linear-gradient(180deg, var(--green), var(--green2));
  box-shadow: none;
}

.btn-primary:hover{
  filter: brightness(1.03);
}

.btn-ghost{
  color: #071006;
  background: linear-gradient(180deg, var(--green), var(--green2));
  border-color: rgba(0,0,0,0.10);
}

.btn-ghost:hover{
  background: rgba(255,255,255,0.09);
}

/* Products */
.products-container{
  width: 100%;
  max-width: 1400px;
}

.products-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(520px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.product-card{
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 18px;
  overflow: hidden;
}

.product-media{
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
}

.product-media img{
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: grayscale(100%) contrast(105%);
  opacity: 0.92;
}

.product-media-stack{
  display: grid;
  gap: 10px;
}

.product-media-stack a{
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.product-media-stack img{
  width: 100%;
  height: auto;
  min-height: 0;
}

.product-info h3{
  margin: 2px 0 8px;
}

.features{
  margin: 12px 0 16px;
  padding-left: 18px;
  color: rgba(255,255,255,0.82);
}

.features li{
  margin: 6px 0;
}

.buy-wrap{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.buy-wrap-2 .btn{
  width: 100%;
  max-width: 100%;
}

#tooted .buy-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

#tooted .buy-wrap .btn{
  width: auto;
  min-width: 180px;
  padding: 12px 18px;
}

#tooted .buy-wrap-2 .btn{
  min-width: 260px;
}

/* Program */
.program-mock{
  padding-top: 72px;
  padding-bottom: 72px;
}

.program-mock-wrap{
  display: grid;
  grid-template-columns: 360px minmax(560px, 720px) 360px;
  gap: 36px;
  align-items: stretch;
  justify-content: center;
  max-width: var(--program-maxw);
  margin: 0 auto;
}

.program-mock-side{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
}

.program-side-stack{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.program-mock-side img{
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  filter: grayscale(100%) contrast(105%);
}

.program-mock-center{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  margin-top: -72px;
  text-align: center;
}

.tagline-center{
  position: relative;
  left: 50%;
  display: block;
  width: 1356px;
  max-width: calc(100vw - 44px);
  margin: 0 0 26px;
  color: inherit;
  font-size: clamp(40px, 4.2vw, 72px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0.005em;
  text-align: center;
  transform: translateX(-50%);
}

.tagline-center::before{
  content: "";
  position: relative;
  left: 50%;
  display: block;
  width: 1356px;
  max-width: calc(100vw - 44px);
  height: 4px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green2));
  box-shadow: 0 0 14px rgba(79,191,118,0.35);
  transform: translateX(-50%);
}

.program-top-cards{
  position: relative;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 1356px;
  max-width: calc(100vw - 44px);
  margin: 0 0 26px;
  gap: 12px 14px;
  text-align: left;
  transform: translateX(-50%);
}

.program-top-cards .pd-card{
  height: 100%;
}

.program-mock-center p{
  max-width: 66ch;
  margin: 0 auto 18px;
  color: rgba(255,255,255,0.90);
  line-height: 1.55;
  letter-spacing: 0.005em;
}

.program-mock-center h4{
  margin: 22px 0 12px;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.program-mock-list{
  max-width: 52ch;
  margin: 0 auto 18px;
  padding: 0;
  list-style: none;
}

.program-mock-list li{
  margin: 7px 0;
  color: rgba(255,255,255,0.90);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.program-mock-cta{
  margin: 18px 0 16px;
}

.program-mock-btn{
  width: min(560px, 100%);
  padding: 14px 22px;
  border-radius: 12px;
  justify-content: center;
}

.program-mock-foot{
  max-width: 70ch;
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
}

.program-deep{
  max-width: 70ch;
  margin: 16px auto 0;
  text-align: left;
}

.program-deep-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-bottom: 12px;
}

.program-deep-summary{
  margin-top: 8px;
  text-align: center;
}

.program-deep-list{
  max-width: 54ch;
}

.pd-card{
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(0,0,0,0.08);
}

.pd-card strong{
  display: block;
  margin: 0 0 4px;
  font-size: 17px;
  letter-spacing: 0.01em;
}

.pd-card span{
  display: block;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.45;
}

.pd-card--wide{
  grid-column: 1 / -1;
}

/* Contact */
.contact-card{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  align-items: center;
}

.contact-card > div:first-child{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-lines{
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.contact-photo{
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
}

.contact-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(105%);
}

/* Footer */
.site-footer{
  padding: 22px 0 28px;
  background: rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* Lightbox */
.kb-lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  overflow: auto;
  padding: 24px 16px;
}

.kb-lightbox[aria-hidden="false"]{
  display: block;
}

.kb-lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}

.kb-lightbox-inner{
  position: relative;
  width: min(92vw, 980px);
  max-height: 92vh;
  margin: 0 auto;
  padding: 16px;
  overflow: auto;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(20,20,20,0.92);
  box-shadow: 0 24px 80px rgba(0,0,0,0.65);
}

.kb-lightbox-inner img{
  display: block;
  width: 100%;
  max-height: 84vh;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.kb-lightbox-close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

body.kb-lightbox-open{
  overflow: hidden;
}

/* Tablet / smaller desktop */
@media (max-width: 1100px){
  .program-mock-wrap{
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 26px;
  }

  .program-mock-side{
    max-width: 640px;
    margin: 0 auto;
  }

  .program-top-cards{
    left: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 0 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }

  .program-deep-grid{
    grid-template-columns: 1fr;
  }
}

/* General mobile layout */
@media (max-width: 1024px){
  .site-header{
    padding-top: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .header-inner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: auto;
    max-width: 100%;
    padding: 10px 16px;
  }

  .brand{
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    min-width: 0;
    align-items: center;
    flex: 0 0 auto;
  }

  .header-kickback-logo{
    width: 52px;
    height: 52px;
    max-width: 52px;
  }

  .nav-toggle{
    z-index: 4;
    display: block;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .nav{
    position: fixed;
    top: 72px;
    right: 12px;
    left: 12px;
    z-index: 5;
    display: none;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    background: rgba(15,10,10,0.96);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  }

  .nav.is-open{
    display: flex;
  }

  .nav a{
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    line-height: 1.35;
    white-space: normal;
  }

  .hero{
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 36px;
  }

  .hero-content{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    text-align: left;
    transform: none;
  }

  .hero h1{
    max-width: 100%;
    margin: 0 0 14px;
    font-size: clamp(26px, 6.2vw, 40px);
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero p{
    max-width: 100%;
    margin: 0 0 16px;
    font-size: 15px;
  }

  .hero-cta{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 16px;
  }

  .hero-cta .btn{
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .hero-credit{
    max-width: 100%;
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 900px){
  .products-grid,
  .product-card,
  .contact-card{
    grid-template-columns: 1fr;
  }

  .products-grid{
    gap: 22px;
  }
}

@media (max-width: 700px){
  .header-inner{
    padding: 8px 12px;
  }

  .header-kickback-logo{
    width: 46px;
    height: 46px;
    max-width: 46px;
  }

  .nav{
    top: 64px;
    right: 10px;
    left: 10px;
  }

  .hero{
    padding-top: 96px;
    padding-bottom: 28px;
  }

  .hero-content{
    padding: 0 12px;
  }

  .hero h1{
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.1;
  }

  .hero p{
    font-size: 14px;
  }

  .btn{
    padding: 12px 14px;
    font-size: 14px;
  }

  .program-mock-center{
    margin-top: 0;
  }

  .tagline-center{
    left: 0;
    width: 100%;
    max-width: 100%;
    font-size: clamp(34px, 9vw, 54px);
    line-height: 1.08;
    transform: none;
  }

  .tagline-center::before{
    left: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 14px;
    transform: none;
  }

  .program-top-cards{
    grid-template-columns: 1fr;
  }
}
/* No pictures */
img{
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

.lightbox-link,
.product-media,
.program-side-stack,
.contact-photo{
  pointer-events: auto;
}

.lightbox-link img,
.product-media img,
.program-side-stack img,
.contact-photo img{
  pointer-events: none;
}
/* =========================
   PRODUCT GALLERY – DETAIL PAGE ONLY
   ========================= */

.shop-detail-page .product-gallery{
  display: grid;
  gap: 12px;
}

.shop-detail-page .product-gallery-main{
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  text-decoration: none;
}

.shop-detail-page .product-gallery-main img{
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  min-height: 0;
  object-fit: cover;
  filter: grayscale(100%) contrast(105%);
  opacity: 0.92;
  transition: transform .18s ease, opacity .18s ease;
}

.shop-detail-page .product-gallery-main:hover img{
  transform: scale(1.01);
  opacity: 0.97;
}

.shop-detail-page .product-gallery-thumbs{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.shop-detail-page .product-thumb{
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, opacity .15s ease, box-shadow .15s ease;
}

.shop-detail-page .product-thumb:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.18);
}

.shop-detail-page .product-thumb.is-active{
  border-color: rgba(79,191,118,0.75);
  box-shadow: 0 0 0 1px rgba(79,191,118,0.25);
}

.shop-detail-page .product-thumb img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  object-fit: cover;
  filter: grayscale(100%) contrast(105%);
  opacity: 0.92;
}

/* Lightbox gallery arrows + counter */
.kb-lightbox-inner{
  position: relative;
}

.kb-lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.kb-lightbox-prev{
  left: 12px;
}

.kb-lightbox-next{
  right: 12px;
}

.kb-lightbox-nav[disabled]{
  opacity: 0.35;
  cursor: default;
}

.kb-lightbox-counter{
  margin-top: 12px;
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

@media (max-width: 1100px){
  .shop-detail-page .product-gallery-main img{
    height: clamp(300px, 48vw, 460px);
  }

  .shop-detail-page .product-gallery-thumbs{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .shop-detail-page .product-gallery{
    gap: 10px;
  }

  .shop-detail-page .product-gallery-main img{
    height: clamp(260px, 62vw, 360px);
  }

  .shop-detail-page .product-gallery-thumbs{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .kb-lightbox-nav{
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .kb-lightbox-prev{
    left: 8px;
  }

  .kb-lightbox-next{
    right: 8px;
  }
}

.nav-social{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.nav-social svg{
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px){
  .nav-social{
    width: 100%;
    height: auto;
    min-height: 44px;
  }
}
