 html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            background-color: #FFF5F7;
            font-family: "Noto Sans", sans-serif;
            color: #5A3E36;
            line-height: 1.6;
        }

        /* GŁÓWNE SEKCJE */
        .main-section {
            position: relative;
            z-index: 10;
            padding: 5rem 0;
            width: 100%;
            overflow: hidden;
        }

        /* SPECYFICZNE SEKCJE */
        #witaj {
            
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        #o_nas {
            background-color: #F8E8EB;
        }

        #produkty {
            background-color: #FFFFFF;
            color: #5A3E36;
        }

        #realizacje {
            background-color: #F8E8EB;
        }

        #kontakt {
            background-color: #FFFFFF;
        }

        /* NAGŁÓWKI */
        .section-header {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .section-header:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #E9AAB7;
        }

        /* PRZYCISKI */
        .btn-custom {
            background-color: #E9AAB7;
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .btn-custom:hover {
            background-color: #D25B7A;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(210, 91, 122, 0.2);
            color: white;
        }

 

        /* FORMULARZ */
        #contact-form {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            color: #5A3E36;
        }

        /* STOPKA */
        footer {
            background-color: #E9AAB7;
            padding: 2rem 0;
            color: white;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* DEKORACYJNE ELEMENTY */
        .cookie-decoration {
            position: absolute;
            background: rgba(233, 170, 183, 0.1);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            transform: rotate(45deg);
        }

        /* RESPONSYWNOŚĆ */
        @media (max-width: 768px) {
            .main-section {
                padding: 3rem 0;
            }
            
            h1.display-4 {
                font-size: 2.2rem;
            }
        }

        /* ANIMACJE */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* STYLE SPECJALNE */
        .highlight-text {
            color: #D25B7A;
            font-weight: 600;
        }

        .cookie-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 15px 15px 0 rgba(210, 91, 122, 0.1);
        }
		
		.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background-color: #FFFFFF;
}

.instagram-post iframe {
    width: 100%;
    height: 550px; /* Stała wysokość dla spójności */
    border: none;
}

/* Responsywność */
@media (max-width: 768px) {
    .instagram-post iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .instagram-post iframe {
        height: 300px;
    }
}

.product-grid img {
  width: 100%;
  height: 220px;       /* wszystkie zdjęcia równej wysokości */
  object-fit: cover;   /* przycięcie zamiast rozciągania */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-grid img:hover {
  transform: scale(1.05); /* efekt powiększenia na hover */
}





		a {
    text-decoration: none;
}

/* Styl przycisku w sekcji #engraving */
.engraving-button {
    background-color: #8B6B46;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.engraving-button:hover {
    background-color: #6B4F32;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 79, 50, 0.3);
    color: white;
}

.engraving-button:hover span:last-child {
    opacity: 1;
}
/* Stylizacja animowanego kosztu */
.cost-display {
    display: inline-block;
    position: relative;
    font-weight: 600;
    color: #D25B7A;
}

.cost-container {
    display: inline-flex;
}

.cost-digit {
    display: inline-block;
    position: relative;
    width: 0.7em;
    text-align: center;
    overflow: hidden;
}

.cost-digit .digit {
    display: block;
}

.cost-digit .digit.animate {
    animation: odometer var(--animation-duration, 0.3s) ease-out;
}

@keyframes odometer {
    0% { 
        transform: translateY(20px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Stylizacja nawigacji i logo */
.navbar-brand {
    padding: 0;
    margin-right: 20px;
}

.navbar-brand img {
    height: 80px; /* Zwiększona wysokość z 60px */
    width: auto;
    transition: all 0.3s ease;
}

/* Dla responsywności - zmniejsz logo na mniejszych ekranach */
@media (max-width: 992px) {
    .navbar-brand img {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 80px;
    }
}

.cookie-hamburger {
      width: 60px;
      height: 60px;
      position: relative;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 12px;
      z-index: 10;
	  display:none;
    }

@media (max-width: 992px) {
  .cookie-hamburger {
    display: flex;
  }
}


    .cookie-hamburger span {
      display: block;
      width: 40px;
      height: 6px;
      background: linear-gradient(90deg, #D25B7A, #E9AAB7);
      border-radius: 3px;
      transition: all 0.6s ease;
      position: relative;
      overflow: hidden;
    }

    /* Efekt lukru kapiącego */
    .cookie-hamburger span::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 10px;
      width: 6px;
      height: 6px;
      background: #E9AAB7;
      border-radius: 50%;
      opacity: 0;
    }

    .cookie-hamburger.open span::after {
      animation: drip 1.5s infinite;
    }

    @keyframes drip {
      0% { transform: translateY(0); opacity: 0; }
      20% { opacity: 1; }
      100% { transform: translateY(15px); opacity: 0; }
    }

    /* Transformacja w X */
    .cookie-hamburger.open span:nth-child(1) {
      transform: translateY(18px) rotate(45deg);
    }
    .cookie-hamburger.open span:nth-child(2) {
      opacity: 0;
    }
    .cookie-hamburger.open span:nth-child(3) {
      transform: translateY(-18px) rotate(-45deg);
    }

    /* Posypka */
    .sprinkle {
      position: absolute;
      width: 6px;
      height: 2px;
      background: #FFD166;
      border-radius: 2px;
      opacity: 0;
      pointer-events: none;
    }

    @keyframes sprinkleFly {
      0% { transform: translate(0,0) rotate(0); opacity: 1; }
      100% { transform: translate(var(--x), var(--y)) rotate(360deg); opacity: 0; }
    }
	
	
#opinie {
  padding: 4rem 0;
  background-color: #FFF8F0;
}

.section-header {
  text-align: center;
  color: #D25B7A;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}

.opinie-carousel {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.opinia-card {
  flex: 0 0 auto;
  min-width: 300px;
  margin: 0 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-style: italic;
  color: #333;
  text-align: center;
}

