:root {
  --bg: #0a0a0a;
  --card: #111111;
  --border: #1a1a1a;
  --text: #f9e3cc;
  --accent: #d7131a;
  --accent-dark: #b41016;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-margin-top: 50px;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(/img/bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.tommi-logo {
  text-align: center;
}

.tommi-logo-img {
  width: 750px;
  height: auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.03), transparent 70%);
  pointer-events: none;
}

section {
  padding: 6rem 0;
}

.story {
  font-family: "Montserrat", sans-serif;
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.25rem;
  text-align: center;
}
.story p {
  margin-bottom: 24px;
}

.about-us {
  font-family: "Montserrat", sans-serif;
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.25rem;
  text-align: center;
}
.about-us p {
  margin-bottom: 24px;
}

.stock {
  font-family: "Montserrat", sans-serif;
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.25rem;
}
.stock__title {
  font-size: 2rem;
  color: white;
}
.stock__desc {
  margin-bottom: 24px;
}
.stock__list {
  margin-bottom: 24px;
}
.stock__list li {
  list-style-type: none;
  margin-bottom: 3px;
}
.stock__list-point {
  width: 25px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(25%) sepia(77%) saturate(6932%) hue-rotate(348deg) brightness(83%) contrast(105%);
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 3px;
}

footer {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem 0;
  text-align: center;
}

.copyright {
  margin-top: -35px;
  padding-bottom: 18px;
}

@media (max-width: 600px) {
  section {
    padding: 3rem 0;
  }
}
.btn {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 1rem 2.6rem;
  border: 1.5px solid var(--accent);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.6px;
}

.btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.25);
}

.product-details-btn,
.product-cart-btn {
  display: inline-block;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
}

.product-details-btn {
  background-color: var(--accent-dark);
  color: white;
}
.product-details-btn:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}
.product-details-btn:active {
  transform: translateY(0);
}

.product-cart-btn {
  background-color: white;
  color: var(--accent-dark);
  border: 1px solid transparent;
}
.product-cart-btn:hover {
  border: 1px solid var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}
.product-cart-btn:active {
  transform: translateY(0);
}

.whatsapp-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-call svg {
  width: 34px;
  height: 34px;
}

.whatsapp-call:hover {
  background: #1fbd5a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transform: translateY(-3px) scale(1.05);
}

.whatsapp-call:active {
  transform: scale(0.96);
}

.whatsapp-call:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.4);
  outline-offset: 4px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  width: max-content;
  padding: 9px 12px;
  border-radius: 8px;
  color: #ffffff;
  background: #1f2937;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.2s ease;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #1f2937;
}

.whatsapp-call:hover .whatsapp-tooltip,
.whatsapp-call:focus-visible .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .whatsapp-call {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-call svg {
    width: 31px;
    height: 31px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}
h1,
h2,
h3 {
  font-family: "Parisienne", sans-serif;
}

h1 {
  font-weight: 100;
  font-size: 200px;
  color: white;
  margin-bottom: -50px;
}

h2 {
  font-size: 80px;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.stock__title {
  font-size: 2.5rem;
}

.hero .subtitle {
  font-family: "Parisienne", sans-serif;
  text-align: center;
  font-size: 3rem;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1rem 0 1.5rem;
}

span {
  color: var(--accent);
}

@media (max-width: 1500px) {
  h1 {
    font-size: 150px;
  }
}
@media (max-width: 1000px) {
  h1 {
    font-size: 100px;
  }
  .hero .subtitle {
    font-size: 2rem;
    margin-top: 45px;
  }
}
@media (max-width: 600px) {
  h1 {
    margin-bottom: 0;
    margin-top: 25px;
    font-size: 55px;
  }
  h2 {
    font-size: 45px;
  }
  .stock__title {
    font-size: 35px;
  }
  p {
    font-size: 16px;
  }
  .hero .subtitle {
    font-size: 1.8rem;
    margin-top: 10px;
    min-height: 0vh;
  }
}
.products-wrapper {
  max-width: 2000px;
}

.products {
  display: flex;
  justify-content: center;
}

.original-jam-img {
  max-width: 500px;
  height: auto;
  opacity: 1;
  display: block;
  transition: all 0.4s;
  backface-visibility: hidden;
}

.garlic-jam-img {
  max-width: 550px;
  height: auto;
  padding-top: 100px;
  opacity: 1;
  display: block;
  transition: all 0.4s;
  backface-visibility: hidden;
}

.ginger-jam-img {
  max-width: 500px;
  height: auto;
  opacity: 1;
  display: block;
  transition: all 0.4s;
  backface-visibility: hidden;
}

.product-button {
  transition: all 0.4s;
  opacity: 0;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-button-middle {
  transition: all 0.4s;
  opacity: 0;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-image {
  position: relative;
}

.product-image:hover .original-jam-img {
  transform: scale(1.05);
  filter: brightness(0.5) saturate(0%) blur(2px);
}

.product-image:hover .garlic-jam-img {
  transform: scale(1.05);
  filter: brightness(0.5) saturate(0%) blur(2px);
}

.product-image:hover .ginger-jam-img {
  transform: scale(1.05);
  filter: brightness(0.5) saturate(0%) blur(2px);
}

.product-image:hover .product-button {
  opacity: 1;
}

.product-image:hover .product-button-middle {
  opacity: 1;
}

@media (max-width: 1500px) {
  .original-jam-img {
    max-width: 300px;
  }
  .garlic-jam-img {
    max-width: 320px;
  }
  .ginger-jam-img {
    max-width: 300px;
  }
}
@media (max-width: 1000px) {
  .products {
    flex-direction: column;
    align-items: center;
  }
  .garlic-jam-img {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .original-jam-img {
    max-width: 200px;
  }
  .garlic-jam-img {
    max-width: 210px;
  }
  .ginger-jam-img {
    max-width: 200px;
  }
}
.product-gallery {
  margin: 2rem 0 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  position: relative;
}

.gallery-img {
  width: 450px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-top {
  position: absolute;
  right: 90px;
}

.gallery-img:hover {
  transform: scale(1.03);
}

@media (max-width: 1500px) {
  .gallery-img {
    max-width: 300px;
  }
  .gallery-top {
    right: 335px;
  }
}
@media (max-width: 1000px) {
  .product-gallery {
    width: 100%;
    margin: 2rem 0 4rem;
  }
  .gallery-grid {
    position: relative;
    width: 500px;
    max-width: 90vw;
    height: 260px;
    margin-left: auto;
    margin-right: auto;
  }
  .gallery-img {
    position: absolute;
    height: auto;
    max-width: none;
    border-radius: 8px;
    max-width: 200px;
  }
  .gallery-img:first-child {
    left: 100px;
  }
  .gallery-top {
    left: 215px;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    width: 92vw;
    max-width: 380px;
    aspect-ratio: 380/220;
  }
  .gallery-img:first-child {
    left: 50px;
    max-width: 150px;
  }
  .gallery-top {
    left: 140px;
    max-width: 150px;
  }
  .product-gallery {
    margin-bottom: 0;
    margin-top: 0;
  }
}

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