
.product-hero {
	padding: calc(85px + 1rem) 0 0.5rem 0;
	background: #f4f4f4;
}
.product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	background: #fff;
	color: #333;
	border-radius: 0.5rem;
	padding: 1rem 0.5rem;
}
/* KÉPEK */
.product-gallery {
	max-width: 475px;
	/* max-width: 400px; */
	margin: 0 auto;
	position: relative;
	padding-left: 50px;
}
.product-gallery .main-image {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
}
.product-gallery .main-image img {
	width: 100%;
	display: block;
	border-radius: 1rem;
	transition: transform  0.85s ease;
}
.product-gallery .main-image button.prev,
.product-gallery .main-image button.next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 80px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	border-radius: 50%;
	cursor: pointer;	
	border: 1px solid;
	font-size: 1.5rem;
	z-index: 3;
}
.product-gallery .main-image button.prev {
	left: 0.6rem;
}
.product-gallery .main-image button.next {
	right: 0.6rem;
}
.product-gallery .thumbnails {
	display: flex;
	gap: 0.4rem;
	margin-top: 0.6rem;
	justify-content: flex-start;
}
.product-gallery .thumbnails img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: 0.4rem;
}
.product-gallery .thumbnails img.active {
	border-color: #7ac943;
}
/* ---------- */

/* product-here - termek főkép-rész */
.brand {
	color: #333;
	font-weight: 500;
	margin-bottom: 0.5rem;
}
.product-title {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
}
.product-title h1 {
	font-size: 1.8rem;
	font-weight: 600;
	margin: 0;
}
.product-title h2 {
	font-size: 1.6rem;
	font-weight: 500;
	margin: 0;
}

/* .rating { */
	/* margin-bottom: 20px; */
	/* color: #ffaa00; */
/* } */
.rating-wrapper {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	line-height: 1;
	margin-bottom: 1rem;
}
.stars-outer {
	position: relative;
	display: inline-block;
	color: #ccc;
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
}
.stars-inner {
	position: absolute;
	top: 0;
	left: 0;
	white-space: nowrap;
	overflow: hidden;

	/* Ezteket írja felül a PHP */
	width: 0;
	color: #7ac943;
}
.rating-text {
	font-size: 0.9rem;
	color: #333;
}

.product-info-top,
.product-info-middle,
.product-info-bottom {
	width: 100%;
}

.price {
	font-size: 2rem;
	font-weight: 700;
	margin-top: 1rem;
}
.quantity-row {
	margin-top: 1rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
}
.quantity-box {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.quantity-box button {
	width: 35px;
	height: 35px;
	border: none;
	background: #ccc;
	border-radius: 0.5rem;
	cursor: pointer;
}
.quantity-box input {
	width: 50px;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 0.5rem;
	height: 35px;
}

.add-to-cart-btn {
	margin: 0 auto;
}
.ph-add-to-cart-btn {
	margin: 0;
}

.shipping-info,
.shipping-info-row {
	/* margin-top: 1rem; */
	font-size: 0.9rem;
	color: #333;
	display: flex;
	flex-direction: row;
}
.shipping-info {
	margin-top: 1rem;
	flex-direction: column;
	line-height: 1.4;
}
.shipping-info-row {
	gap: 0.5rem;
	justify-content: flex-start;
	align-items: center;

}

/* A variáns gombok alapstílusa */

/* .variant select { */
	/* padding: 10px; */
	/* border-radius: 0.5rem; */
	/* border: 1px solid #ccc; */
	/* width: 200px; */
/* } */
.variant-selector {
	display: flex;
	flex-direction: column;
	/* align-items: flex-start; */
	/* justify-content: space-between; */
	/* width: 75%; */
	width: fit-content;
}
.variant-group {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
}
.button-selector-wrapper {
	display: flex;
	flex-direction: column;
}
.variant-btn {
	display: inline-block;
	padding: 10px 20px;
	margin: 5px;

	color: #3e7510;
	background-color: #fff;
	border: 1px solid #333;

	border-radius: 0.5rem;
	transition: all 0.5s ease;
	cursor: pointer;
}
.variant-btn:hover {
	border-color: #7ac943;
	/* background-color: #3e7510; */
	background-color: #f0fdf4;
}
.variant-btn.active {
	color: #3e7510;
	background-color: #f0fdf4;
	border-color: #3e7510;
	font-weight: bold;
}
.variant-btn.not-exists {
	/* opacity: 0.6; */
	/* text-decoration: line-through; */
	/* background-color: #5a0f0f; */
	background-color: #f4f4f4;
	color: #5a0f0f;
	/* color: #ccc; */
	}
.variant-btn.out-of-stock {
	color: #5a0f0f;
	border-style: dashed;
	}

/* ---------- */

/* RESPONSIVE */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Sticky-Bar */
/* #product-parameters,  */
/* #product-description-hero,  */
/* #product-features,  */
/* #product-description */
.product-description {
	/* navbar + sticky magasság */
	scroll-margin-top: 130px;
}
.product-sticky-bar {
	/* alapból product-hero alatt */
	position: fixed;
	top: 0;
	/* left: 0; */
	/* width: 100%; */
	left: 50%;
	transform: translate(-50%, -100%);
	width: 1280px;
	
	height: 3.1rem;
	background: #ccc;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	z-index: 999;
	/* transform: translateY(-100%); */
	transition: transform 0.8s ease, position 0.8s ease;
	border-radius: 0 0 0.5rem 0.5rem;
}
.sticky-bar-Spacer {
	position: static;
	height: 50px;
	width: 100%;
	padding: 0;
	margin: 0 0 0.5rem 0;
	top: 0;
}
.product-sticky-bar.fixed {
	position: fixed;
	top: 0;
	z-index: 999;
	border-radius: 0.5rem;
	box-shadow: 0;
}
.product-sticky-bar .sticky-right {
	transition: opacity 2.5s ease, width 2.5s ease;
}
.product-sticky-bar.fixed .sticky-right {
	opacity: 0;
	width: 0;
	overflow: hidden;
}
.product-sticky-bar.active {
	/* transform: translateY(0); */
	width: 100%;
	transform: translate(-50%, 0);
}
.sticky-inner {
	/* max-width: 1200px; */
	margin: 0 auto;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* padding: 0 20px; */
	padding: 0 3.8rem;
}
.sticky-left a {
	position: relative; 
	margin-right: 1.5rem;
	text-decoration: none;
	font-weight: 600;
	color: #333;
	font-size: 0.85rem;
}
.sticky-left a:hover {
	color: #fff;
}
.sticky-left a.active {
	color: #7ac943;
}
.sticky-right {
	display: flex;
	align-items: center;
	gap: 3.8rem;
	position: relative; 
	margin-right: 0px;
}
.sticky-right-img {
	max-width: 45px;
	max-height: 45px;
	object-fit: cover;
	cursor: auto;
	border: 2px solid transparent;
	border-radius: 0.4rem;
}
.sticky-thumb {
	height: 2.9rem;
}
.sticky-price {
	display: flex;
	white-space: nowrap;
	color: #333;
	font-size: 1rem;
	font-weight: 700;
	align-items: center;
	justify-content: center;
}
.sticky-cart-btn {
	margin: 0 auto;
	width: 60%;
	padding: 0.5rem 1rem;
}
/* .sticky-cart-btn:hover { */
	/* background: linear-gradient(90deg, #000, #7ac943, #3e7510, #7ac943); */
	/* background-size: 200% 100%; */
	/* background-position: right center; */
	/* transform: scale(1.05); */
/* } */
/* ---------- */

/* collapsible - nyit-csuk :) */
.collapsible-section {
	margin: 0;
	padding-bottom: 0.5rem;
	/* padding-bottom: 2rem; */
	overflow: hidden;
	background-color: #f4f4f4;
}
.collapsible-before-after {
	padding: 1rem;
}
.collapsible-header {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	max-height: 0;
	position: relative;
	background-color: #fff;
	padding: 1.7rem 0 1.7rem 0;
}
.collapsible-header h2,
.collapsible-content h3,
.collapsible-content h4,
.collapsible-content h5 {
	text-align: left;
	padding-left: 6.25rem;
	margin: 15px 0 15px;
	font-weight: 700;
	color: #333;
}
.collapsible-header h2 {
	font-size: 1.7rem;
	margin-bottom: 10px;
}
.collapsible-content h3 {
	font-size: 1.3rem;
}
.collapsible-content h4 {
	font-size: 1.1rem;
}
.collapsible-content h5 {
    font-size: 1.0rem;
}
.collapsible-content p {
	max-width: 900px;
	margin: 0 auto 30px auto;
	font-size: 1rem;
	line-height: 1.6;
	text-align: justify;
	color: #555;
	color: #777;
}
#pre-register-form-checkout h4 {
	text-align: center;
	width: 100%;
}
/*.pending-register-div h3 {
	position: relative;
	left: -50px;
	padding: 1rem;
}
.pending-register-div h4 {
	position: relative;
	text-align: center;
	padding: 1rem;
	width: 100%;
}
.pending-register-div h5 {
	position: relative;
	text-align: center;
	padding: 0.4rem;
	font-size: 1.2rem;
	width: 100%;
	color: #000;
}*/
#pre-register-form-checkout  p {
	position: relative;
	text-align: justify;
	text-align: center;
	padding: 0.4rem;
	font-size: 0.9rem;
	width: 100%;
}
.collapsible-header .toggle {
	transition: transform 0.8s ease;
	user-select: none;
	position: absolute;
	right: 60px;
}
.collapsible-content {
	max-height: 0;
	overflow: hidden;
	/* összecsukott állapotban nincs padding */ 
	padding: 0 0 0 0;
	overflow: hidden;
	transition: max-height 0.8s ease, padding 0.8s ease, border-radius 0.8s ease;
	background-color: #fff;
}
.collapsible-section:not(.active) .collapsible-header {
	border-radius: 8px;
	transition-delay: 0.7s;
}
.collapsible-section.active .collapsible-header {
	border-radius: 8px 8px 0 0;
	transition-delay: 0s;
}
.collapsible-section.active .collapsible-content {
	display: block;
	padding: 25px;
	border-radius: 0 0 8px 8px;
}
.collapsible-section.active .toggle {
    transform: rotate(180deg); /* ˇ -> ^ */
}
/* ---------- */

/* useage-info - használat és infók */
.product-useage-info {
	/* padding: 40px 20px; */
	padding: 30px 20px 25px 20px;
	background-color: #f4f4f4;
}

.product-useage-info h2 {
	text-align: left;
	padding-left: 100px;
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 10px;
}

.product-useage-info h3 {
	text-align: left;
	padding-left: 100px;
    font-size: 20px;
    /* margin: 15px 0 15px; */
    margin: 15px 0 15px;
    font-weight: 700;
	color: #333;
}

.product-useage-info h4 {
	text-align: left;
	padding-left: 100px;
    font-size: 15px;
    /* margin: 15px 0 15px; */
    margin: 15px 0 15px;
    font-weight: 500;
	color: #333;
}

.product-useage-info p {
	max-width: 900px;
	margin: 0 auto 10px auto;
	font-size: 1rem;
	line-height: 1.6;
	/* text-align: center; */
	text-align: justify;
	color: #555;
}

.ri-note, .allergen-note {
	max-width: 900px;
	margin: 0 auto 10px auto;
	font-size: 1rem;
	text-align: justify;
	color: #555;
	padding-top: 20px;
}
/* ---------- */

/* Description - Termékleírás blokk */
.product-description, 
.product-description ul {
	padding: 30px 20px 25px 20px;
	background-color: #fff;
	text-align: justify;
}
.product-description h2,
.product-description h3,
.product-description h4,
.product-description h5 {
	text-align: left;
	padding-left: 100px;
	margin: 15px 0 15px;
	font-weight: 700;
	color: #333;
}
.product-description h2 {
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.product-description h3 {
    font-size: 1.3rem;
}
.product-description h4 {
    font-size: 1.1rem;
}
.product-description h5 {
    font-size: 1.0rem;
}
.product-description p {
	max-width: 900px;
	margin: 0 auto 30px auto;
	font-size: 1rem;
	line-height: 1.6;
	text-align: justify;
	color: #555;
	color: #777;
}

/* product-info-table - product-serving-table - product-useage-info */
.product-serving-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	align-items: flex-start;
	background-color: #fff;
	padding: 30px 20px 0px 20px;
}
.product-serving-block img {
	max-width: 400px;
	width: 100%;
	border-radius: 12px;
}

.product-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	height: 100%;
}
.product-info-table, 
.product-serving-table, 
.product-ingredients-table {
	border-collapse: collapse;
	min-width: 250px;
	max-width: 400px;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}
.product-info-table {
	max-width: 500px;
	margin: 0 auto;
	margin-bottom: 2rem;
}
.product-ingredients-table {
	min-width: 600px;
	max-width: 800px;
	margin: 2rem auto;
}

.product-info-table th, .product-info-table td, 
.product-serving-table th, .product-serving-table td, 
.product-ingredients-table th, .product-ingredients-table td {
	border: 1px solid #ddd;
	padding: 12px 15px;
	text-align: left;
}
.product-info-table th, 
.product-serving-table th, 
.product-ingredients-table th {
	font-weight: 600;
	background-color: transparent;
}
.product-info-table tr:nth-child(even), 
.product-serving-table tr:nth-child(even), 
.product-ingredients-table tr:nth-child(even) {
	background-color: rgba(255,255,255,0.2);
}
.product-info-table tr:nth-child(odd):not(:first-child), 
.product-serving-table tr:nth-child(odd):not(:first-child), 
.product-ingredients-table tr:nth-child(odd):not(:first-child) {
	background-color: rgba(255,255,255,0.1);
}

/* Paraméterek blokk */
/* .product-parameters { */
.product-description {
	padding: 30px 20px 25px 20px;
	background-color: #f4f4f4;
	border-radius: 0.5rem;
}
/* .product-parameters h2 { */

/* .product-parameters table { */
/* .product-description table { */
/* .product-info-table { */
  /* border-collapse: collapse; */
  /* min-width: 250px; */
  /* max-width: 400px; */
  /* width: 100%; */
  /* color: #fff; */
  /* border-radius: 8px; */
  /* overflow: hidden; */
/* } */
/* .product-parameters th,  */
/* .product-parameters td { */

/* .product-parameters th { */
/* .product-parameters tr:nth-child(even) { */


/* .product-feature-item { */
.product-description-li-item {
	padding: 5px 30px 5px 30px;
	max-width: 960px;
	margin: 0 auto 0 auto;
	font-size: 1rem;
	font-weight: 600;
	color: #555;
	line-height: 1.6;
	text-align: justify;
	/* eltávolítja a pöttyöt */
	list-style: none;
}
/* .product-feature-item::before { */
.product-description-li-item::before {
    content: "✔";
    margin-right: 8px;
    font-weight: bold;
    align-items: top;
	color: var(--product-feature-before-item);
}
.product-feature-li-item:nth-child(odd), 
.product-description-item:nth-child(odd) {
	background: rgba(0,0,0,0.03);
}

/* Cart - Kosár */
.cart-container {
	margin: 100px auto;
	margin-bottom: 1rem;
	color: #333;
}

.cart-title {
	margin-left: 20px;
	margin-bottom: 30px;
	font-weight: 800;
	font-size: 1.8rem;
	/* display: inline-block; */
	color: #000;
}
.cart-title span {
	/* font-size: 1.1rem; */
	color: #ccc;
}
.cart-layout {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

/* Terméklista */
.cart-items {
	flex: 1;
}
.cart-item {
	display: flex;
	background: #fff;
	padding: 20px;
	/* border-bottom: 1px solid #ccc; */
	align-items: center;
	gap: 20px;
	border-radius: 8px;
	margin-bottom: 0.5rem;
}
.item-img img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	/* border-radius: 8px; */
}
.item-info {
	display: flex;
	flex: 1;
	justify-content: space-between;
	align-items: center;
}
.item-details a, 
.item-details h3 {
	margin: 0 0 5px 0;
	font-size: 1rem;
	text-decoration: none;
	color: #333;
}
.empty-cart {
	margin-left: 3rem;
}
.item-meta {
	color: #777;
	/* color: #333; */
	font-size: 0.85rem;
}
.item-controls {
	display: flex;
	align-items: center;
	gap: 30px;
}

.quantity-picker {
	display: flex;
	border: 1px solid #ccc;
	border-radius: 20px;
	overflow: hidden;
}
.quantity-picker button {
	padding: 5px 10px;
	font-family: monospace;
	background: none;
	border: none;
	line-height: 1;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
}
.quantity-picker button:hover {
	color: #7ac943;
}
.quantity-picker input {
	width: 40px;
	text-align: center;
	border: none;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
    -moz-appearance: textfield;
}
/* 2. A gyári nyilak eltüntetése (Chrome, Safari, Edge) */
.quantity-picker input::-webkit-outer-spin-button,
.quantity-picker input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.item-prices {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	min-width: 110px;
	gap: 5px;
}
.item-price {
	font-size: 1.0rem;
	text-align: right;
	min-width: 100px;
}
.item-price-sum {
    font-size: 1.1rem;
    font-weight: 700;
	text-align: right;
	min-width: 100px;
}
.remove-item {
	background: transparent;
	border: none;
	color: #ccc;
	cursor: pointer;
	transition: color 0.6s;
}
.remove-item:hover {
	color: #e74c3c;
}

/* Folyamatjelző */
.checkout-steps-wrapper {
    width: 100%;
    height: 3.5rem;
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 8px;
    background: #fff;
}
.checkout-stepper {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
/* Háttérvonal */
.checkout-stepper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ccc;
    transform: translateY(-50%);
    z-index: 0;
}
/* Progress csík - most egy külön div lesz JS által */
.checkout-stepper .progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: #7ac943;
    transform: translateY(-50%);
    width: 0;
    transition: width 0.4s ease;
    z-index: 0;
}
.step a,
.step {
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
	text-decoration: none;
}
.step span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    border: solid 2px #ccc;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
}
.step.active a,
.step.active {
    color: #7ac943;
    font-weight: 600;
}
.step.active span {
    border: solid 2px #7ac943;
    color: #7ac943;
}
.step.completed span {
    background: #7ac943;
    color: #7ac943;
}
/* Opció: Stepper content alatt, ha kell */
.checkout-step-content {
	margin-top: 1rem;
	padding: 0.5rem;
	border-radius: 0.5rem;
	background: #fff;
	margin-bottom: 0.5rem;
}
/* ----- zee ----- */
.checkout-step-header h2, 
.checkout-step-content h3 {
	text-align: left;
	padding-left: 2rem;
	margin: 0.8rem 0 0.8rem;
	font-weight: 700;
	color: #333;
}
.checkout-step-header h2 {
	font-size: 1.7rem;
	margin-bottom: 10px;
}
.checkout-step-content h3 {
	font-size: 1.2rem;
	margin-bottom: 0;
}
.checkout-step-content h4 {
	font-size: 1.2rem;
	margin-bottom: 0;
	text-align: center;
}
.checkout-step-content h5 {
	font-size: 1.1rem;
	margin-bottom: 0;
	text-align: center;
}
.checkout-step-content .checkout-error-msg h2, 
.checkout-step-content .checkout-error-msg p {
	margin: 0 auto;
}

.show {
	display: flex;
}
.checkout-step-address-profile-mod {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1rem;
	gap: 0.4rem;
}
.checkout-step-address-profile-mod a {
	text-decoration: none;
}
.checkout-step-address-profile-mod p {
	padding: 0 !important;
}

.checkout-step-top-user,
.checkout-step-top-guest {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-radius: 8px;
	padding: 1rem; 
	margin: 1rem auto;
}
.checkout-step-top-user p,
.checkout-step-top-guest p {
	font-size: 1rem;
	padding: 0.5rem;
}
.checkout-step-top-user a,
.checkout-step-top-guest a {
	text-decoration: none;
}
.checkout-login-btn {
	width: 12rem;
	margin: 0.5rem;
}
#final-register-form-checkout .checkout-reg-final-btn, 
#pre-register-form-checkout .checkout-reg-pre-btn, 
#first-register-form-checkout .checkout-reg-first-btn {
	width: 50%;
	margin: 0 auto;
	margin-bottom: 2rem;
}

/* Összesítő sáv */
.cart-summary {
	width: 350px;
	position: sticky;
	top: 100px; /* Sticky bar/nav alá */
}
.summary-box {
	background-color: #fff;
	padding: 25px;
	border-radius: 8px;
	margin-bottom: 0.5rem;
}
.summary-box h3 {
	padding-bottom: 1rem;
}
.summary-box hr {
	margin: 1rem;
}
.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1rem;
	gap: 10px;
	width: 100%;
}
#summary-delivery-type {
	text-align: left;
	/* font-weight: 520; */
}
.summary-row span:first-child,
#summary-delivery-name {
	flex: 1;
	word-wrap: break-word;
	line-height: 1.2;
}
.summary-row span:last-child,
#summary-shipping-fee,
#summary-total-price {
	flex-shrink: 0;
	text-align: right;
	white-space: nowrap;
}
.summary-row.total {
	font-size: 1.3rem;
	font-weight: 800;
	color: #333;
}
.free-paying,
.free-shipping {
	color: #7ac943;
	font-weight: 700;
}
.summary-footer {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 20px;
}
.feature-items-wrapper {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
}
.feature-items-wrapper .feature-item {
	font-size: 0.85rem;
	margin-bottom: 5px;
	white-space: nowrap;
}

.checkout-summary-btn,
.checkout-payment-btn,
.checkout-shipping-btn,
.checkout-btn {
	width: 100%;
}

.shipping-nudge-box {
	background: #f0fdf4;
	border: 1px solid #7ac943;
	padding: 15px;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 10px;
}
.shipping-nudge-box p {
	margin: 0;
	font-size: 0.9rem;
	color: #333;
}

/* Mobil nézet */
@media (max-width: 900px) {
    .cart-layout { flex-direction: column; }
    .cart-summary { width: 100%; position: static; }
    .item-info { flex-direction: column; align-items: flex-start; gap: 15px; }
    .item-controls { width: 100%; justify-content: space-between; }
}

