@charset "UTF-8";
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--nav-h: 100px;
	--nav-h-mobile: 80px;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	padding-top: var(--nav-h-mobile);
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.6rem;
	background-color: #c8a97e;
}

/* --- Wrapper and section titles --- */

.wrapper {
	margin: 0 auto;
	max-width: 1400px;
	width: 100%;
	text-align: center;
}

.section-title {
	display: inline-block;
	position: relative;
	letter-spacing: 5px;
	padding: 1em;
	color: #a03b52;
	font-size: 4rem;
	font-family: 'Indie Flower', cursive;
}

.section-title::before,
.section-title::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: url('../img/icon/_underline7.svg');
}

.section-title::before {
	left: -60px;
}

.section-title::after {
	right: -60px;
	transform: translateY(-50%) rotateY(180deg);
}

/* NAVBAR */

.navbar {
	position: fixed;
	height: 80px;
	top: 0;
	width: 100%;
	display: flex;
	align-items: center;
	background-color: #fdf3ea;
	box-shadow: 2px 2px 10px black;
	z-index: 350;
}
.navbar .hamburger {
	position: absolute;
	top: 50%;
	right: 1em;
	padding: 0.5em;
	transform: translateY(-50%);
	outline: 1px solid transparent;
	z-index: 200;
}
.navbar .hamburger:focus {
	outline: 1px solid #a03b52;
}
.navbar .hamburger-inner,
.navbar .hamburger-inner::before,
.navbar .hamburger-inner::after {
	background-color: #5a3e2b;
}
.navbar__logo {
	z-index: 200;
}
.navbar__logo img {
	width: 80px;
	height: auto;
	margin-left: 15px;
}
.navbar__item {
	position: relative;
	display: none;
	padding: 0.5em 2em;
	text-decoration: none;
	font-size: 2rem;
	font-weight: bold;
	color: #5a3e2b;
	text-transform: uppercase;
	transition: color 0.5s;
}
.navbar__item:focus-visible {
	outline: 1px solid #a03b52;
}
.navbar__item:hover {
	color: #a03b52;
}

/* --- Koszyk w navbarze --- */
.navbar__cart {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	font-size: 3.5rem;
	background: none;
	border: none;
	cursor: pointer;
	color: #3c2e2e; /* pasujący do palety */
	transition: transform 0.2s ease;
}

.navbar__cart:hover {
	transform: scale(1.1);
}

#cart-badge {
	position: absolute;
	top: -15px;
	right: -25px;
	background: #ee780e; /* Twój pomarańczowy akcent */
	color: #fff;
	font-size: 1.4rem;
	font-weight: 600;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	display: grid;
	place-items: center;
}

/* MOBILE MENU */

.navbar .mobile-menu {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #f5ebdd;
	transform: translateX(-105%);
	transition: transform 0.3s;
	z-index: 190;
}
.navbar .mobile-menu.open {
	transform: translateX(0);
}
.navbar .mobile-menu__item {
	padding: 1.5em;
	text-decoration: none;
	font-size: 2.7rem;
	font-weight: bold;
	color: #5a3e2b;
	text-transform: uppercase;
	transition: color 0.5s;
}
.navbar .mobile-menu__item:hover {
	color: #a03b52;
}

/* HEADER */

.header {
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
		url('../img/hero_slider.webp');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat, no-repeat;
}
.header__box {
	padding: 20px;
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.header__heading {
	margin-bottom: 0.5em;
	padding: 3px 15px;
	font-family: 'Amatic SC', system-ui, sans-serif;
	font-weight: 700;
	text-align: center;
	font-size: 7rem;
	color: #fff;
	letter-spacing: 4px;
	background-color: #a03b52;
}
.header__text {
	padding: 10px 15px;
	text-align: center;
	font-size: 2rem;
	letter-spacing: 1px;
	line-height: 1.7;
	color: #000;
	background-color: #e0d6c9;
}
.header__btn {
	padding: 0.5em 2em;
	margin-top: 30px;
	border-radius: 10px;
	background-color: #8c9a74;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.3s;
	text-decoration: none;
}
.header__btn:hover {
	background-color: #a03b52;
	color: #fff;
}

/* start: elementy ukryte i przesunięte w dół */
.header .reveal {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	animation: riseUp 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
	animation-play-state: paused; /* włączymy JS-em */
	will-change: transform, opacity;
}

/* opóźnienia (stagger) */
.header__heading.reveal {
	animation-delay: 200ms;
}

.header__text.reveal {
	animation-delay: 400ms;
}

.header__btn.reveal {
	animation-delay: 700ms;
}

/* gdy strona gotowa – odpal animacje */
.is-loaded .header .reveal {
	animation-play-state: running;
}

/* prefers-reduced-motion: bez animacji */
@media (prefers-reduced-motion: reduce) {
	.header .reveal {
		animation: none;
		opacity: 1;
		transform: none;
	}
}
@keyframes riseUp {
	from {
		opacity: 0;
		transform: translate3d(0, 24px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/* --- O nas --- */

.aboutus {
	padding: 6rem 0;
	/* background: linear-gradient(
			rgba(255, 255, 255, 0.8),
			rgba(255, 255, 255, 0.8)
		),
		url('../img/bg_section1.png'); */
	overflow: hidden;
	background-color: #fdf3ea;
}
.aboutus__box {
	display: flex;
	flex-direction: column;
	gap: 50px;
	align-items: center;
	padding: 0 1em;
}
.aboutus__text {
	order: 2;
	width: 100%;
	color: #3e2a1f;
	padding: 0 1em;
}
.aboutus__text .section-subtitle {
	padding: 1em;
	font-size: 2.5rem;
	font-weight: bold;
	color: #a03b52;
}
.aboutus__text p {
	padding: 1em;
	line-height: 1.3;
}
.aboutus__hero {
	order: 1;
	margin-bottom: 2em;
	width: 100%;
	perspective: 1000px;
}
.aboutus__hero .flip-card {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	aspect-ratio: 1 / 1;
	position: relative;
}
.aboutus__hero .flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}
.aboutus__hero .flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}
.aboutus__hero .flip-card-front,
.aboutus__hero .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 50%;
	border: 10px solid #fff;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.aboutus__hero .flip-card-back {
	transform: rotateY(180deg);
}
.aboutus__hero img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.aboutus__icons-box {
	display: flex;
	flex-direction: column;
	margin-top: 5em;
	padding: 2em;
	gap: 1em;
	text-align: center;
}
.aboutus__icons-box .icon {
	padding: 1em;
	border-radius: 20px;
	background-color: rgba(255, 255, 255, 0.6);
}
.aboutus__icons-box .icon img {
	width: 180px;
	padding-bottom: 1em;
}
.aboutus__icons-box .icon-title {
	font-weight: bolder;
	text-transform: uppercase;
	color: #a03b52;
	margin-bottom: 0.5em;
}
.aboutus__icons-box .icon-text {
	color: #3e2a1f;
}

/* --- Karuzela z produktami --- */

.boxes-carousel {
	/* background: linear-gradient(180deg, #c8a97e 0%, #d6ba90 100%),
		url('../img/crissxcross.png');
	background-size: cover, 200px; 
	background-blend-mode: multiply; */
	background-color: #efdbc1;
	padding: 5rem 0 6rem;
	/* Karta produktu */
	/* strzałki + kropki */
}
.boxes-carousel__head {
	max-width: 920px; /* NOWE */
	margin: 0 auto 2rem;
	padding: 0 1rem;
}
.boxes-carousel__title {
	font-size: 3.2rem;
	color: #f5ebdd; /* cream */
	letter-spacing: 0.06em;
}
.boxes-carousel__subtitle {
	max-width: 820px; /* NOWE */
	margin: 0.6rem auto 0;
	line-height: 1.6;
	font-size: 2rem;
	color: #3e2a1f;
	opacity: 0.9;
}
.boxes-carousel__swiper {
	padding: 1rem 0.5rem 3.5rem;
}
.boxes-carousel .pcard {
	/* background, border-radius, box-shadow removed - moved to flip faces */
	display: flex;
	flex-direction: column;
	height: 420px;
	min-height: 420px;
	text-align: center;
	perspective: 1000px;
	cursor: pointer;
}
.boxes-carousel .pcard-flip-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.8s;
	transform-style: preserve-3d;
	display: flex;
	flex-direction: column;
	will-change: transform;
}
.boxes-carousel .pcard:hover .pcard-flip-inner {
	transform: rotateY(180deg);
}
.boxes-carousel .pcard-flip-front,
.boxes-carousel .pcard-flip-back {
	backface-visibility: hidden;
	width: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 14px;
	overflow: hidden;
}
.boxes-carousel .pcard-flip-front {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #fdf3ea;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.boxes-carousel .pcard-flip-back {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	transform: rotateY(180deg) translateZ(0.01px);
	padding: 1.4rem 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background: #fdf3ea;
	overflow: auto;
	-webkit-font-smoothing: antialiased;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.boxes-carousel .pcard__ingredients {
	list-style: none;
	padding: 1rem 0;
	margin: 0;
	text-align: left;
	color: #3e2a1f;
}
.boxes-carousel .pcard__ingredients li {
	padding: 0.5rem 0;
	font-size: 1.6rem;
	line-height: 1.4;
	position: relative;
	padding-left: 2rem;
}
.boxes-carousel .pcard__ingredients li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #a03b52;
	font-weight: bold;
}
.boxes-carousel .pcard__img {
	width: 100%;
	height: 320px; /* slightly taller image */
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease, filter 0.4s ease;
}
.boxes-carousel .pcard-flip-front:hover .pcard__img {
	transform: scale(1.05);
	filter: brightness(1.05);
}
.boxes-carousel .pcard__title {
	padding: 3rem 1.4rem 1rem;
	margin: 0; /* keep title at the top of the card content */
	font-size: 2rem;
	color: #5a3e2b; /* bread */
}
/* .boxes-carousel .pcard__desc {
	padding: 0 1.4rem 1.2rem;
	font-size: 1.5rem;
	color: #3e2a1f;
	opacity: 0.95;
} */
.boxes-carousel__nav {
	margin-top: 1.2rem;
	display: grid;
	grid-template-columns: 40px 1fr 40px;
	align-items: center;
	gap: 1rem;
}
.boxes-carousel__prev,
.boxes-carousel__next {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #c8a97e; /* kraft */
	cursor: pointer;
	position: relative;
	transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
	box-shadow: 0 6px 18px rgba(200, 169, 126, 0.25);
	/* berry */
}
.boxes-carousel__prev:hover,
.boxes-carousel__next:hover {
	background: #a03b52;
}
.boxes-carousel__prev:active,
.boxes-carousel__next:active {
	transform: scale(0.96);
}
.boxes-carousel__prev::before,
.boxes-carousel__next::before {
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
.boxes-carousel__prev::before {
	transform: rotate(225deg);
}
.boxes-carousel__pagination {
	--bullet: #f5ebdd;
	--bullet-active: #a03b52;
	text-align: center;
}
.boxes-carousel__pagination .swiper-pagination-bullet {
	background: var(--bullet);
	opacity: 0.6;
}
.boxes-carousel__pagination .swiper-pagination-bullet-active {
	background: var(--bullet-active);
	opacity: 1;
}

/* --- Opinie klientów --- */

.testimonials {
	/* background: linear-gradient(180deg, #c8a97e 0%, #d6ba90 100%),
		url('../img/crissxcross.png');
	background-size: cover, 200px;
	background-blend-mode: multiply; */
	background-color: #fdf3ea;
	padding: 3rem 0 6rem;
}

.testimonials__subtitle {
	max-width: 720px;
	margin: 0.6rem auto 3rem;
	line-height: 1.6;
	font-size: 2rem;
	color: #3e2a1f;
	opacity: 0.9;
	text-align: center;
}

.testimonials__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 2rem;
}

.testimonial {
	background: #fff;
	border-radius: 14px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.testimonial__stars {
	color: #f4c430;
	font-size: 1.8rem;
	margin-bottom: 1.2rem;
	display: flex;
	justify-content: center;
	gap: 0.3rem;
}

.testimonial__text {
	font-size: 1.6rem;
	line-height: 1.6;
	color: #3e2a1f;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial__author {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.testimonial__author strong {
	font-size: 1.7rem;
	color: #5a3e2b;
	font-weight: 700;
}

.testimonial__author span {
	font-size: 1.4rem;
	color: #a03b52;
	opacity: 0.9;
}

@media (min-width: 768px) {
	.testimonials__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.testimonials__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* uslugi */

.produkty {
	padding: 6rem 0;
	/* background: linear-gradient(
			rgba(255, 255, 255, 0.8),
			rgba(255, 255, 255, 0.8)
		),
		url('../img/bg_section1.png'); */
	overflow: hidden;
	background-color: #fff;
}
.produkty__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.produkty__image {
	width: 100%;
	padding: 2em;
}
.produkty__image img {
	width: 100%;
	max-width: 500px;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
	border: 10px solid #fdf3ea;
}
.produkty__motto {
	width: 100%;
	padding: 2em;
}
.produkty__motto h2 {
	padding: 1em;
	font-size: 2.9rem;
	font-weight: bolder;
	color: #5a3e2b;
}
.produkty__motto h3 {
	font-size: 4rem;
	font-weight: bolder;
	font-family: 'Indie Flower', cursive;
	color: #a03b52;
}
.produkty__motto p {
	padding: 2em;
	color: #3e2a1f;
}
.produkty__btn {
	padding: 0.5em 2em;
	border-radius: 10px;
	text-decoration: none;
	background-color: #8c9a74;
	font-size: 1.8rem;
	text-transform: uppercase;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.3s;
}
.produkty__btn:hover {
	background-color: #a03b52;
	color: #fff;
}
.produkty__cards-box {
	margin-top: 10em;
	padding: 2em;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1em;
}
.produkty__card {
	position: relative;
	margin-bottom: 6em;
	padding: 2em;
	background-color: #f5ebdd;
	border-radius: 4%;
	border: 5px solid transparent;
	transition: border 0.2s;
}
.produkty__card:hover {
	border: 5px solid #a03b52;
}
.produkty__card img {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -60%);
	width: 150px;
	height: 150px;
	border: 5px solid #fff;
	box-shadow: 5px 5px #a03b52;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.produkty__card:hover img {
	transform: translate(-50%, -60%) rotate(30deg);
}
.produkty__title {
	padding: 1.5em;
	font-size: 3rem;
	font-weight: bold;
}
.produkty__card-text {
	padding-bottom: 2em;
	line-height: 1.3;
}
.produkty__btn-more {
	padding: 0.5em 2em;
	border-radius: 10px;
	text-decoration: none;
	background-color: #fff;
	font-size: 1.8rem;
	text-transform: uppercase;
	border: none;
	color: #0c0c0c;
	cursor: pointer;
	transition: background-color 0.3s;
}
.produkty__btn-more:hover {
	background-color: #a03b52;
	color: #fff;
}

/* call to action */

.call2action {
	position: relative;
	background-image: url('../img/cta_bg.jpg');
	background-position: center;
	background-size: cover;
	padding: 5rem 0;
}
.call2action::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
}
.call2action .wrapper {
	display: grid;
	gap: 2rem;
	align-items: stretch;
	/* mobile: jedna kolumna; desktop: 2 kolumny 50/50 */
	grid-template-columns: 1fr;
}
.call2action__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.6rem;
	padding: 2rem;
	text-align: left;
	color: #f5ebdd; /* cream */
	background: linear-gradient(
		180deg,
		rgba(90, 62, 43, 0) 0%,
		rgba(90, 62, 43, 0.15) 100%
	);
	border-radius: 12px;
	z-index: 10;
}
.call2action__title {
	font-size: 3rem;
	letter-spacing: 0.06em;
	color: #f5ebdd; /* cream */
}
.call2action__desc {
	font-size: 1.8rem;
	line-height: 1.6;
	color: #f5ebdd; /* cream */
	opacity: 0.95;
}
.call2action__list {
	margin: 0.5rem 0 1rem 1.6rem;
	display: grid;
	gap: 0.6rem;
}
.call2action__list li {
	color: #f5ebdd;
	font-size: 1.6rem;
	list-style: disc;
}
.call2action__btn {
	align-self: flex-start;
	padding: 0.8em 2em;
	border-radius: 10px;
	text-decoration: none;
	background-color: #8c9a74; /* herb */
	font-size: 1.8rem;
	text-transform: uppercase;
	border: none;
	color: #ffffff;
	cursor: pointer;
	transition: transform 0.15s ease, background-color 0.25s ease,
		box-shadow 0.25s ease;
	box-shadow: 0 6px 20px rgba(140, 154, 116, 0.25);
}
.call2action__btn:hover,
.call2action__btn:focus-visible {
	background-color: #a03b52; /* berry */
	box-shadow: 0 8px 26px rgba(160, 59, 82, 0.28);
	outline: none;
	transform: translateY(-1px);
}
.call2action__btn:active {
	transform: translateY(0);
}

/* site footer */

.site-footer {
	background: #f5ebdd;
	/* color: #f5ebdd; */
	position: relative;
	padding-top: 4rem;
}
.site-footer__grid {
	display: grid;
	gap: 2.4rem;
	justify-items: center;
	grid-template-columns: 1fr;
	padding-bottom: 2.4rem;
}
.site-footer__brand .site-footer__logo {
	margin: 0 auto;
	max-width: 160px;
	border-radius: 50%;
	height: auto;
	display: block;
	margin-bottom: 1rem;
}
.site-footer__brand .site-footer__tag {
	opacity: 0.95;
	font-size: 1.5rem;
	color: #000000;
}
.site-footer__social {
	margin-top: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.site-footer__social li {
	text-align: center;
	list-style: none;
}
.site-footer__social .icon {
	width: 36px;
	height: 36px;
	display: inline-block;
	border-radius: 50%;
	background: #c8a97e;
	position: relative;
	transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
	box-shadow: 0 6px 18px rgba(200, 169, 126, 0.25);
}
.site-footer__social .icon:hover {
	background: #a03b52;
	transform: translateY(-1px);
}

.site-footer__social .icon--fa i {
	font-size: 18px;
	color: #fff;
	line-height: 2;
}

.site-footer__nav,
.site-footer__contact {
	text-align: center;
	line-height: 1.6;
}
.site-footer__nav li,
.site-footer__contact li {
	list-style: none;
	color: #000000;
}
.site-footer__title {
	padding-bottom: 0.8rem;
	font-size: 1.7rem;
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
	color: #000000;
}
.site-footer__nav ul,
.site-footer__contact ul {
	display: grid;
	gap: 0.6rem;
}
.site-footer__nav a,
.site-footer__contact a {
	color: #000000;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.25s, border-color 0.25s;
}
.site-footer__nav a:hover,
.site-footer__contact a:hover {
	color: #a03b52;
	border-color: #a03b52;
}
.site-footer__note {
	margin-top: 0.6rem;
	font-size: 1.3rem;
	opacity: 0.9;
}
.site-footer__bottom {
	border-top: 1px solid rgba(245, 235, 221, 0.15);
	background: linear-gradient(
		180deg,
		rgba(90, 62, 43, 0) 0%,
		rgba(90, 62, 43, 0.25) 100%
	);
}
.site-footer__bottom-row {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	padding: 1.2rem 0;
	font-size: 1.4rem;
	color: #000000;
}
.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.site-footer__legal li {
	list-style: none;
}
.site-footer__legal a {
	color: #000000;
	text-decoration: none;
	opacity: 0.9;
	border-bottom: 1px solid transparent;
	transition: opacity 0.25s, border-color 0.25s;
}
.site-footer__legal a:hover {
	opacity: 1;
	border-color: #a03b52;
	color: #a03b52;
}
.site-footer__to-top {
	position: fixed;
	right: 16px;
	bottom: 16px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	background: #c8a97e;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 10px 28px rgba(200, 169, 126, 0.35);
	transition: background 0.25s, transform 0.15s;
	z-index: 500;
}
.site-footer__to-top:hover {
	background: #a03b52;
	transform: translateY(-2px);
}

/* Drawer koszyka */

/* === Drawer koszyka (pudełka) === */

.box-drawer {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(420px, 100%);
	background: #f5ebdd; /* kremowy jak tło strony */
	border-left: 4px solid #a03b52; /* akcent w kolorze jagodowym */
	box-shadow: -8px 0 28px rgba(0, 0, 0, 0.25);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	z-index: 1000;
}

.box-drawer.open {
	transform: none;
}

.box-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	background-color: #a03b52;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.box-drawer__head h3 {
	font-family: 'Comfortaa', sans-serif;
	font-size: 2rem;
	font-weight: 700;
}

#box-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 2.2rem;
	cursor: pointer;
	transition: transform 0.2s ease, color 0.2s ease;
}

#box-close:hover {
	transform: scale(1.15);
	color: #f5ebdd;
}

.box-drawer__body {
	flex: 1;
	padding: 2rem;
	overflow-y: auto;
	color: #3e2a1f;
	font-size: 1.6rem;
}

.box-drawer__body p {
	text-align: center;
	margin-top: 3rem;
	font-style: italic;
	color: #5a3e2b;
}

.box-drawer__foot {
	padding: 1.5rem 2rem;
	border-top: 2px solid #c8a97e;
	background-color: #fff;
	display: flex;
	justify-content: center;
}

.box-drawer__foot .btn {
	padding: 0.8em 2.4em;
	border-radius: 10px;
	background-color: #8c9a74;
	font-size: 1.8rem;
	text-transform: uppercase;
	font-weight: 600;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.15s ease;
}

.box-drawer__foot .btn:hover:not(:disabled) {
	background-color: #a03b52;
	transform: translateY(-2px);
}

.box-drawer__foot .btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* --- Tło za drawerem --- */
.box-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(2px);
	z-index: 900;
	transition: opacity 0.25s ease;
}

/* uniwersalny styl przycisków */
.box-drawer button,
.box-drawer .btn {
	font-family: 'Comfortaa', sans-serif;
	border: none;
	border-radius: 8px;
	padding: 0.6em 1.4em;
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.25s ease, transform 0.15s ease;
}

/* przyciski ilości */
#box-drawer .qty-dec,
#box-drawer .qty-inc {
	background: #f5ebdd;
	color: #5a3e2b;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	/* font-weight: 700; */
	border: none;
	cursor: pointer;
	transition: background 0.25s, transform 0.15s;
}
#box-drawer .qty-dec:hover,
#box-drawer .qty-inc:hover {
	background: #c8a97e;
	transform: scale(1.08);
}

/* usuń */
#box-drawer .rm {
	background: #a03b52;
	color: #fff;
	border: none;
	font-size: 1.2rem;
	border-radius: 8px;
	padding: 0.6em 1.2em;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(160, 59, 82, 0.25);
	transition: background 0.25s, transform 0.15s;
}
#box-drawer .rm:hover {
	background: #8c1e3d;
	transform: translateY(-2px);
}

/* zapisz dane (submit) */
#box-drawer .order-submit {
	background: #8c9a74;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 0.8em 2.2em;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(140, 154, 116, 0.25);
	transition: background 0.25s, transform 0.15s;
}
#box-drawer .order-submit:hover {
	background: #a03b52;
	transform: translateY(-2px);
}

/* toggle formularza */
#box-drawer .order-toggle {
	background: #f5ebdd;
	color: #5a3e2b;
	border: 1px solid #c8a97e;
	border-radius: 8px;
	padding: 0.6em 1.2em;
	font-weight: 600;
	cursor: pointer;
}

/* pola formularza */
#box-drawer #order-form input,
#box-drawer #order-form textarea {
	width: 100%;
	padding: 0.8em 1em;
	border-radius: 6px;
	border: 1px solid #c8a97e;
	font-size: 1.5rem;
	font-family: 'Comfortaa', sans-serif;
}
#box-drawer #order-form input:focus,
#box-drawer #order-form textarea:focus {
	outline: 2px solid #a03b52;
	border-color: #a03b52;
}

#box-drawer #order-form .checkbox {
	width: 20px;
	height: 20px;
	outline: none;
}

/* responsywność */

@media (max-width: 575.98px) {
	.header__heading {
		font-size: 5rem;
	}
	.header__text {
		font-size: 1.5rem;
	}
	.boxes-carousel__subtitle {
		font-size: 1.8rem;
	}
}

@media (max-width: 400px) {
	.header__heading {
		font-size: 4rem;
	}
	.header__text {
		font-size: 1.3rem;
	}
}

@media (min-width: 768px) {
	.section-title {
		font-size: 5rem;
	}
	.aboutus__icons-box {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.aboutus__icons-box .icon {
		flex: 1 1 40%;
	}
	.produkty__cards-box {
		flex-direction: row;
		justify-content: space-around;
		align-items: center;
		flex-wrap: wrap;
	}
	.produkty__card {
		max-width: 350px;
		height: 450px;
	}
	.site-footer__grid {
		grid-template-columns: 1.2fr 1fr 1fr;
	}
	.boxes-carousel .pcard {
		grid-template-rows: 320px auto auto;
		min-height: 300px;
	}
}
@media (min-width: 992px) {
	body {
		padding-top: var(--nav-h);
	}
	.header {
		flex-direction: row;
	}
	.header__box {
		height: 100vh;
		width: 100%;
		background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
			url('../img/hero_slider.webp');
		background-position: center;
		background-size: cover;
	}
	.navbar {
		height: 100px;
		justify-content: space-evenly;
	}
	.navbar .hamburger {
		display: none;
	}
	.navbar__logo img {
		width: 130px;
		height: auto;
		padding: 0.5em 0.5em;
	}
	.navbar__item {
		display: inline-block;
		font-size: 1.8rem;
	}
	.aboutus__icons-box {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.aboutus__icons-box .icon {
		flex: 1 1 23%;
	}
	.produkty {
		padding: 7rem 0;
	}
	.produkty__box {
		flex-direction: row;
		justify-content: center;
	}
	.produkty__image {
		width: 50%;
	}
	.produkty__motto {
		width: 50%;
	}
	.aboutus {
		padding: 7rem 0;
	}
	.aboutus__box {
		order: 1;
		flex-direction: row;
		justify-content: center;
	}
	.aboutus__text {
		order: 2;
		width: 50%;
		padding: 0 1em;
	}
	.aboutus__hero {
		width: 50%;
		order: 2;
	}
	.call2action {
		padding: 6rem 0;
	}
	.call2action .wrapper {
		grid-template-columns: 1fr 1fr;
	}
	.call2action__text {
		padding: 3rem 4rem;
	}
	.call2action__title {
		font-size: 3.4rem;
	}
	.call2action__desc {
		font-size: 1.9rem;
	}
	.site-footer {
		padding-top: 5rem;
	}
	.site-footer__bottom-row {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.navbar__cart {
		font-size: 4rem;
		margin: 0;
		left: 0;
	}
	#cart-badge {
		font-size: 1.7rem;
		top: -20px;
		width: 30px;
		height: 30px;
	}
}

@media (min-width: 1200px) {
	.pcard {
		grid-template-rows: 340px auto auto;
		min-height: 300px;
	}
}

/* Koszyk w aside */

.box-drawer {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(420px, 100%);
	background: #fff;
	border-left: 1px solid #eee;
	box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
	transform: translateX(100%);
	transition: 0.25s;
	display: flex;
	flex-direction: column;
	z-index: 1000;
}
.box-drawer.open {
	transform: none;
}
.box-drawer__head,
.box-drawer__foot {
	padding: 12px 16px;
	border-bottom: 1px solid #eee;
}
.box-drawer__foot {
	border-top: 1px solid #eee;
	border-bottom: 0;
}
.box-drawer__body {
	padding: 12px 16px;
	overflow: auto;
}
.box-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 900;
}

@keyframes rotate-right {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes rotate-left {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(-360deg);
	}
}
@keyframes pulse {
	from {
		transform: scale(1);
		opacity: 0.5;
	}
	to {
		transform: scale(1.4);
		opacity: 0;
	}
} /*# sourceMappingURL=style.css.map */
