:root {
  --white: #ffffff;
  --black: #000000;
  --pink: #d23166;
  --lightpink: #e9dadf;
  --gradient: linear-gradient(135deg, #d23166, #ff80b5);
}

::selection {
  background-color: var(--pink);
  color: var(--white);
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  display: inline-block;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Fredoka", sans-serif;
  background-color: var(--lightpink);
  color: var(--black);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f0e3e8;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 10px;
  transition: 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff5d8f;
}

.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.Poland {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 60px;
  background-color: transparent;
}

.logosite img {
  width: 120px;
}

.menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.menu a {
  font-family: "Fredoka", sans-serif;
  color: #463d3d;
  font-weight: 600;
  transition: 0.3s;
}

.menu a:hover {
  color: var(--pink);
  transform: translateY(-2px);
}

.btn {
  width: 165px;
  height: 49px;
  border-radius: 8px;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(210, 49, 102, 0.3);
  transition: 0.4s ease;
}

.btn:hover {
  transform: scale(1.07) translateY(-3px);
  box-shadow: 0 6px 20px rgba(210, 49, 102, 0.6);
}

.hero {
  margin-top: 50px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
}

.leftboxtext1 {
  font-size: 16px;
  color: #5c5555;
  margin-bottom: 10px;
}

.leftboxtext2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  width: 700px;
  margin-bottom: 20px;
}

.leftboxtext3 {
  font-size: 18px;
  width: 500px;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #5f5f5f;
}

.btnleftbox {
  width: 165px;
  height: 49px;
  border-radius: 8px;
  background: var(--gradient);
  color: white;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(210, 49, 102, 0.3);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btnleftbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.btnleftbox:hover::after {
  left: 125%;
}

.btnleftbox:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(210, 49, 102, 0.6);
}

.rightboximg {
  width: 700px;
  height: auto;
  animation: floatIce 4s ease-in-out infinite;
}

@keyframes floatIce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.features {
  background-color: #fff;
  padding: 80px 0;
}

.features-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.feature {
  width: 250px;
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(210, 49, 102, 0.2);
}

.feature img {
  width: 60px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.feature p {
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 10px;
}

.product {
  background-color: #f8eef1;
  padding: 100px 0;
}

.product-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 60px;
}

.product-text {
  max-width: 500px;
}

.product-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.product-text p {
  font-size: 16px;
  color: #6b6b6b;
  margin-bottom: 30px;
}

.product-img img {
  width: 600px;
  border-radius: 20px;
  animation: floatIce 5s ease-in-out infinite;
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .leftboxtext2 {
    width: 100%;
    font-size: 45px;
  }

  .leftboxtext3 {
    width: 100%;
  }

  .rightboximg {
    width: 500px;
  }

  .product-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .product-img img {
    width: 320px;
  }
}
.product-section-container {
  margin-top: 100px;
  background-color: white;
}
.alltext-section {
  font-size: 44.2px;
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}
.menuproduct {
  display: flex;
  justify-content: center;
}
.menunav {
  display: flex;
  gap: 40px;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 100px;
}
.imgproduct{
  w
}