@charset "UTF-8";
.center-text {
  margin-top: 16px;
  text-align: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  background: #0d0d0d;
  color: #e0e0e0;
  font-family: "Zalando Sans Expanded", system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #222;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  width: 150px;
  height: auto;
}
.navbar__nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.navbar__nav-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar__nav-links a:hover,
.navbar__nav-links a:active {
  color: #efbf04;
}

.navbar__nav-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar__nav-link.active {
  color: #d4af37; /* gold or your brand color */
  font-weight: 700;
  border-bottom: 3px solid #d4af37; /* nice underline */
  padding-bottom: 4px; /* space for underline */
}

header {
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom, #111 0%, #0d0d0d 100%);
}

section {
  padding: 100px 0;
  border-top: 1px solid #222;
}
section:first-of-type {
  border-top: none;
}

.footer {
  text-align: center;
  padding: 60px 0 100px;
  color: #666;
  font-size: 16px;
  border-top: 1px solid #222;
}
.footer__logo {
  width: 350px;
  height: auto;
}
.footer__below {
  display: inline-block;
  margin-top: 24px;
  display: flex;
  justify-content: space-around;
}
.footer__copyright {
  border-top: 1px solid #222;
  color: #444;
}
.footer__paragraph {
  border-top: 1px solid #222;
  color: #444;
  font-size: 14px;
  max-width: 500px;
}

.checkbtn {
  font-size: 22px;
  color: #e0e0e0;
  float: right;
  margin-right: 30px;
  line-height: 80px;
  cursor: pointer;
  display: none;
}

.close-btn {
  display: none;
}

#check {
  display: none;
}

@media only screen and (max-width: 1000px) {
  .checkbtn {
    position: fixed;
    right: 5px;
    display: block;
  }
  .navbar__nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(13, 13, 13, 0.937254902);
    top: 10px;
    right: -100%;
    text-align: center;
    transition: all 0.4s;
    padding-top: 88px;
    gap: 30px;
  }
  .navbar__nav-link {
    font-size: 24px !important;
    display: block;
    margin: 10px 0;
    line-height: 30px;
  }
  #check:checked ~ .navbar__nav-links {
    right: 0;
  }
  #check:checked ~ .checkbtn .close {
    display: inline-block;
  }
  #check:checked ~ .navbar__nav-links .close-menu,
  #check:checked ~ .navbar__nav-links .close-btn {
    display: block;
  }
  .navbar__nav-links .close-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10;
  }
  .close-btn {
    font-size: 24px;
    color: #e0e0e0;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    border-radius: 50%;
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 500px) {
  header {
    padding-bottom: 0px;
    padding-top: 110px;
  }
  section {
    padding: 30px 0;
  }
  .container {
    width: auto;
  }
  .footer {
    padding: 0;
  }
  .footer__below {
    display: flex;
    flex-direction: column;
  }
  .footer__logo {
    width: 250px;
    margin-top: 44px;
  }
  .footer__copyright {
    border: none;
  }
  .footer__paragraph {
    border: none;
  }
  .navbar__logo {
    width: 120px;
    height: auto;
  }
}
.stacked-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -60px;
  padding: 60px 20px;
  perspective: 1000px;
}
.stacked-images img {
  width: 280px;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  border: 8px solid #111;
}
.stacked-images img:nth-child(1) {
  transform: rotate(-12deg) translateX(-20px) scale(0.92);
  z-index: 1;
}
.stacked-images img:nth-child(2) {
  transform: rotate(-6deg) translateX(-10px) scale(0.96);
  z-index: 2;
}
.stacked-images img:nth-child(3) {
  transform: rotate(0deg) translateX(0);
  z-index: 3;
}
.stacked-images img:nth-child(4) {
  transform: rotate(6deg) translateX(10px) scale(0.96);
  z-index: 2;
}
.stacked-images:hover img {
  transform: rotate(0deg) translateX(0) scale(1.05) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 15px 30px rgba(0, 0, 0, 0.5);
}
.stacked-images img:hover {
  transform: translateY(-30px) scale(1.12) !important;
  z-index: 10;
}

.hero__logo {
  width: 75%;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  .stacked-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .stacked-images img {
    width: auto;
  }
  .stacked-images img:nth-child(1) {
    transform: none;
  }
  .stacked-images img:nth-child(2) {
    transform: none;
  }
  .stacked-images img:nth-child(3) {
    transform: none;
  }
  .stacked-images img:nth-child(4) {
    transform: none;
  }
}
@media only screen and (max-width: 800px) {
  .stacked-images {
    grid-template-columns: auto;
  }
}
@media only screen and (max-width: 500px) {
  .stacked-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
  }
  .stacked-images img {
    width: 140px;
    height: 190px;
  }
}
h1 {
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h2 {
  text-transform: uppercase;
  font-size: 44px;
  font-weight: 100;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

p {
  font-size: 20px;
  font-weight: 400;
  color: #cccccc;
  margin-bottom: 28px;
  max-width: 780px;
}

span {
  color: #efbf04;
  font-weight: 1000;
}

.subtext {
  font-size: 16px;
  margin-top: 44px;
  color: #888888;
}

.tagline {
  font-size: 24px;
  font-weight: 500;
  color: #a0a0a0;
  max-width: 680px;
  margin: 0 auto;
}

.second-title {
  line-height: 1.1;
}

.second-text {
  margin-bottom: 36px;
}

@media only screen and (max-width: 500px) {
  .tagline {
    font-size: 20px;
    max-width: 200px;
  }
  h2 {
    font-size: 30px;
  }
  p {
    font-size: 18px;
  }
  .subtext {
    font-size: 14px;
  }
  #improvement {
    text-align: center;
  }
}
.process {
  background: linear-gradient(145deg, #111111, #0d0d0d);
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.process__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 36px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(20, 20, 20, 0.4);
}
.process__item:hover {
  transform: translateY(-6px);
  background: rgba(30, 30, 30, 0.6);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.12);
}
.process__number {
  min-width: 48px;
  height: 48px;
  background: #efbf04;
  color: #0d0d0d;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.process__content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.process__content p {
  font-size: 18px;
  color: #cccccc;
}

.pillar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.pillar__card {
  background: linear-gradient(145deg, #111111, #0d0d0d);
  border: 1px solid #1a1a1a;
  border-radius: 20px;
  padding: 48px 36px;
  transition: all 0.35s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.pillar__card:hover {
  transform: translateY(-12px);
  border-color: #efbf04;
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.pillar__icon {
  font-size: 48px;
  color: #efbf04;
  margin-bottom: 24px;
  display: block;
  text-align: center;
}
.pillar__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.pillar__text {
  font-size: 18px;
  text-align: center;
}

.partner__subtitle {
  font-size: 22px;
  font-weight: 500;
  color: #cccccc;
  margin-bottom: 24px;
  max-width: 720px;
}
.partner__text {
  font-size: 16px;
  color: #bbbbbb;
}
.partner__list {
  list-style: none;
  max-width: 580px;
}
.partner__list li {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 36px;
}
.partner__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #efbf04;
  font-size: 20px;
  line-height: 1;
}

@media only screen and (max-width: 500px) {
  .process {
    padding: 24px 20px;
  }
  .process__item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
  .process__number {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .process__content p {
    font-size: 16px;
  }
  #partners {
    text-align: center;
  }
  #partners span {
    font-size: 30px;
  }
  .pillar__card {
    padding: 24px 18px;
  }
  .pillar__title {
    font-size: 20px;
  }
  .pillar__text {
    font-size: 16px;
  }
  .partner__subtitle {
    font-size: 18px;
  }
}
.business-whatsapp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 500;
  color: #0d0d0d;
  text-decoration: none;
  background: linear-gradient(135deg, #f2d492 0%, #d4af37 50%, #b8860b 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35), inset 0 2px 8px rgba(255, 255, 255, 0.45), inset 0 -2px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
  overflow: hidden;
}
.business-whatsapp-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.55), inset 0 3px 12px rgba(255, 255, 255, 0.55), inset 0 -3px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffe9b8 0%, #e6c567 50%, #d4af37 100%);
}
.business-whatsapp-btn:hover::before {
  left: 120%;
}
.business-whatsapp-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4), inset 0 1px 4px rgba(255, 255, 255, 0.6);
}
.business-whatsapp-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
}

.btn-gold-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 22px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(145deg, #1a1a1a, #111111);
  border: 2px solid #efbf04;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.btn-gold-small:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.35), 0 0 0 4px rgba(212, 175, 55, 0.15);
  border-color: #ffd700;
  color: #ffd700;
}
.btn-gold-small:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}
.btn-gold-small::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.25), transparent);
  transition: left 0.7s ease;
}
.btn-gold-small:hover::before {
  left: 150%;
}
.btn-gold-small::after {
  content: "→";
  margin-left: 12px;
  margin-bottom: 4px;
  font-size: 20px;
  transition: transform 0.3s ease;
}
.btn-gold-small:hover::after {
  transform: translateX(8px);
}

.btn-gold-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(145deg, #1a1a1a, #111111);
  border: 2px solid #efbf04;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.btn-gold-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.35), 0 0 0 4px rgba(212, 175, 55, 0.15);
  border-color: #ffd700;
  color: #ffd700;
}
.btn-gold-big:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}
.btn-gold-big::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.25), transparent);
  transition: left 0.7s ease;
}
.btn-gold-big:hover::before {
  left: 150%;
}
.btn-gold-big:hover::after {
  transform: translateX(8px);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

@media only screen and (max-width: 500px) {
  .business-whatsapp-btn {
    padding: 4px 8px;
    text-align: center;
    font-size: 12px;
  }
  .padding {
    padding: 14px 22px;
  }
  .btn-gold-big {
    text-align: center;
    font-size: 12px;
    padding: 4px 8px;
  }
}
.products-scroll {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #444 #111;
}

.product {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.product__info {
  padding: 20px;
  text-align: center;
}
.product__name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.product__puffs {
  font-size: 18px;
  color: #d4af37;
  margin-bottom: 12px;
}
.product__img {
  max-width: 100%;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup__close:link, .popup__close:visited {
  font-size: 24px;
  color: #303030;
  position: absolute;
  top: 1px;
  right: 15px;
  text-decoration: none;
  display: inline-block;
}
.popup__close:hover {
  color: #efbf04;
}
.popup__content {
  width: 50%;
  background-color: #0d0d0d;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.3s;
}
.popup {
  /* Details list (left side) */
}
.popup .popup__details {
  list-style: none;
  font-size: 18px;
  color: #e0e0e0;
}
.popup .popup__details-icon {
  margin-left: 16px;
}
.popup .popup__details li {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  transition: all 0.3s ease;
}
.popup .popup__details li:hover {
  background: rgba(212, 175, 55, 0.06);
}
.popup {
  /* Flavors list (right side) */
}
.popup .popup__flavors {
  overflow-y: auto;
  max-height: 20vh;
  display: flex;
  flex-direction: column;
  list-style: none;
  column-gap: 48px;
  font-size: 18px;
  line-height: 2.2;
  align-items: center;
  scrollbar-width: thin;
  scrollbar-color: #444 #111;
}
.popup .popup__title {
  margin-bottom: 16px;
  text-align: center;
}
.popup .popup__flavors li {
  display: block;
  margin-bottom: 12px;
  color: #e8e8e8;
  position: relative;
  padding-left: 24px;
  transition: all 0.4s;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.popup .popup__flavors li:hover {
  padding-right: 24px;
}
.popup .popup__flavors li::before {
  content: "✦ ";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 14px;
  top: 7px;
}
@media (max-width: 800px) {
  .popup .popup__content {
    width: 500px;
  }
}
@media (max-width: 600px) {
  .popup .popup__content {
    top: 51%;
    width: 350px;
    height: 600px;
  }
  .popup .popup__title {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 2px;
  }
  .popup .popup__text {
    font-size: 16px;
  }
  .popup .popup__details {
    font-size: 16px;
    padding-bottom: 28px;
  }
  .popup .popup__flavors {
    max-height: 15vh;
  }
  .popup .popup__close {
    top: -3px;
    color: #d4af37;
  }
}

.contact {
  text-align: center;
}
.contact__text {
  margin: 0 auto;
  text-align: center;
}

.verify {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.verify p {
  max-width: 800px;
  margin-bottom: 32px;
}

.verify .input-group {
  display: flex;
  max-width: 380px;
  margin: 0 auto;
  gap: 12px;
}

.verify input[type=text] {
  color: #e0e0e0;
  flex: 1;
  padding: 14px 22px;
  font-size: 1.1rem;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  outline: none;
  transition: all 0.3s;
  background-color: #0d0d0d;
  z-index: 2;
}

.verify input[type=text]:focus {
  border-color: #efbf04;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.verify input[type=text]:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35), 0 0 0 2px rgba(212, 175, 55, 0.15);
  border-color: #ffd700;
}

.verify button {
  z-index: 1;
}

.verify-message {
  margin-top: 30px;
  font-weight: 300;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 500px) {
  .verify .input-group {
    flex-wrap: wrap;
    justify-content: center;
  }
  .verify input[type=text] {
    padding: 10px 16px;
    width: 50%;
  }
}
/*

0px - 600px: Phone
600px - 900px: Tablet portrait
900px - 1200px: Tablet landscape
1200px - 1800px: Normal
1800px +: Big desktop

*/

/*# sourceMappingURL=style.css.map */
