/* ==================================================================
   MOVYLO STORE FRONTEND — Restyled
   Bootstrap 5.3.3 | Poppins | Modern clean design
   ================================================================== */

/* ------------------------------------------------------------------
   1. RESET & BASE
   ------------------------------------------------------------------ */
* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: 'Poppins', Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	min-height: 100vh;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	text-decoration: none;
	color: #1174B8;
	transition: color 0.2s ease;
}

a:hover {
	text-decoration: none;
	color: #0d5a94;
}

label {
	font-size: 14px;
	color: #6c757d;
	margin-bottom: 4px;
}

hr {
	border-color: #f0f0f0;
	margin-bottom: 24px;
}

.title1 { font-size: 1.4rem; font-weight: 600; }
.title2 { font-size: 1.25rem; font-weight: 600; }
.title3 { font-size: 1.1rem; font-weight: 500; }

h2 {
	font-size: 1.05rem;
	line-height: 1.5;
	font-weight: 600;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 12px;
	margin-bottom: 16px;
	margin-top: 24px;
	color: #222;
}


/* ------------------------------------------------------------------
   2. BS4 → BS5 COMPATIBILITY LAYER
   (keeps old class names working for non-updated template files)
   ------------------------------------------------------------------ */
.custom-control {
	position: relative;
	display: block;
	min-height: 1.5rem;
	padding-left: 1.75rem;
}

.custom-control-input {
	position: absolute;
	left: 0;
	z-index: -1;
	width: 1rem;
	height: 1.25rem;
	opacity: 0;
}

.custom-control-label {
	position: relative;
	margin-bottom: 0;
	vertical-align: top;
	line-height: 28px;
	margin-bottom: 8px;
	padding-left: 5px;
	min-width: 140px;
	color: #333;
	font-size: 14px;
	cursor: pointer;
}

.custom-control-label::before {
	position: absolute;
	top: 2px;
	left: -1.75rem;
	display: block;
	width: 22px;
	height: 22px;
	content: "";
	background-color: #fff;
	border: 1px solid #D5D5D5;
	border-radius: 4px;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.custom-control-label::after {
	position: absolute;
	top: 2px;
	left: -1.75rem;
	display: block;
	width: 22px;
	height: 22px;
	content: "";
	background: no-repeat 50% / 50% 50%;
}

.custom-control-input:checked ~ .custom-control-label::before {
	background-color: #ffffff;
	border-color: #1174B8;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
	background: url("../img/checkbox.png");
	background-repeat: no-repeat;
	background-size: 16px;
	background-position: 50% 50%;
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
	background-color: #E2E2E2;
}

.custom-radio .custom-control-label::before {
	border-radius: 50%;
}

.checkbox-group-label {
	display: block;
}

.form-check-inline,
.custom-control.form-check-inline {
	display: inline-flex !important;
}

.custom-select {
	display: block;
	width: 100%;
	padding: 0.375rem 2.25rem 0.375rem 0.75rem;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
	appearance: none;
	-webkit-appearance: none;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
	border: 1px solid #dee2e6;
	border-radius: 8px;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.custom-select:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

select.custom-select {
	background: url("../img/select-dropdown-arrow.png") #ffffff;
	background-repeat: no-repeat;
	background-size: 25px;
	background-position-x: right;
	background-position-y: 50%;
}

.form-inline {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.btn-block {
	display: block;
	width: 100%;
}

.no-gutters {
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}


/* ------------------------------------------------------------------
   3. FORMS & INPUTS
   ------------------------------------------------------------------ */
input:not(.form-check-input), .form-control {
	color: #333;
	font-size: 15px;
	border-color: #dee2e6;
	height: auto;
	border-radius: 8px;
	padding: 10px 14px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:not(.form-check-input):focus, .form-control:focus {
	border-color: #86b7fe;
	box-shadow: 0 0 0 3px rgba(17, 116, 184, 0.1);
}

.form-select {
	padding: 10px 14px;
	border-radius: 8px;
}

/* BS4 compat: .form-group and .form-row for non-migrated templates */
.form-group {
	margin-bottom: 16px;
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -8px;
	margin-left: -8px;
}

.form-row > .col,
.form-row > [class*="col-"] {
	padding-right: 8px;
	padding-left: 8px;
}


/* ------------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------------ */
.btn-primary {
	border: none;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	padding: 10px 22px;
	transition: all 0.25s ease;
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-outline-primary {
	border-radius: 8px !important;
	width: 95% !important;
	font-weight: 500 !important;
	font-size: 14px !important;
	transition: all 0.25s ease !important;
}

.btn-imaged {
	background-repeat: no-repeat;
	background-size: 40px;
	background-position: 20px center;
	border-radius: 12px !important;
	padding: 18px 20px 18px 76px !important;
	font-weight: 500;
	transition: all 0.25s ease;
}
.btn-imaged:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.btn-imaged-profile{background-image: url('../img/iconasignin.png');}
.btn-imaged-booking{background-image: url('../img/iconabooking.png?t');}
.btn-imaged-delivery{background-image: url('../img/iconadelivery.png');}
.btn-imaged-app{background-image: url('../img/iconaapp.png');}
.btn-imaged-offers{background-image: url('../img/iconaofferte.png');}
.btn-imaged-review{background-image: url('../img/iconarecensione.png');}
.btn-imaged-feedback{background-image: url('../img/iconafeedback.png');}
.btn-imaged-friends{background-image: url('../img/iconaamici.png');}
.btn-imaged-newsletter{background-image: url('../img/iconanewsletter.png');}

.text-shadow-light {
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-movy {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.btn-quantity-minus, .btn-quantity-plus {
	background-color: #1174B8;
	width: 28px;
	height: 28px;
	line-height: 28px;
	padding: 0;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	border-radius: 6px;
	border: none;
	transition: background-color 0.2s ease;
}

.btn-quantity-minus:hover, .btn-quantity-plus:hover {
	background-color: #0d5a94;
	color: #ffffff;
}


/* ------------------------------------------------------------------
   5. LAYOUT — HEADER (Desktop)
   ------------------------------------------------------------------ */
.header {
	padding-bottom: 24px;
	padding-top: 32px;
}

.header .search-form {
	margin-bottom: 0;
}

.header .search-form input {
	padding: 12px 48px 12px 16px;
	margin-top: 0;
	background: url("../img/iconacerca.png") white;
	background-repeat: no-repeat;
	background-size: 40px;
	background-position-x: calc(100% - 4px);
	background-position-y: 50%;
	border-radius: 12px;
	font-size: 14px;
}

.header .logo {
	max-width: 85%;
	max-height: 57px;
}

.header_store_name {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	color: #222;
}

#iframe1 {
	width: 100%;
}

iframe {
	max-width: 100%;
}

.header .header-menu-item {
	text-align: center;
	line-height: 1.3;
}

.header .header-menu-item p {
	font-size: 11px;
	margin-bottom: 0;
	margin-top: 4px;
	color: #666;
}

.header .header-menu-item p span {
	font-size: 11px;
}

.header-menu-icon {
	position: relative;
	display: inline-block;
}

.header-menu-icon i {
	font-size: 22px;
	color: #444;
	transition: color 0.2s ease;
}

.header .header-menu-item a {
	color: #333;
	text-decoration: none;
	transition: color 0.2s ease;
}

.header .header-menu-item a:hover {
	color: #1174B8;
}

.header .header-menu-item a:hover .header-menu-icon i {
	color: #1174B8;
}

.header .header-menu-item a:hover .items-in-cart {
	background-color: #1174B8;
}

.header .header-menu-item a.active p {
	color: #1174B8;
}

.header .header-menu-item a.active .header-menu-icon i {
	color: #1174B8;
}

.header .header-menu-item a.active .items-in-cart {
	background-color: #1174B8;
	color: #ffffff;
}

.header .items-in-cart {
	font-size: 9px;
	font-weight: 700;
	background-color: #e74c3c;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -6px;
	right: -10px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	line-height: 1;
}


/* ------------------------------------------------------------------
   6. LAYOUT — MOBILE NAVBAR & OFFCANVAS
   ------------------------------------------------------------------ */
.navbar {
	padding: 12px 16px;
	background-color: #fff;
	border-bottom: 1px solid #f0f0f0;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.offcanvas {
	max-width: 320px;
}

.offcanvas:not(.show):not(.showing):not(.hiding) {
	visibility: hidden;
	transform: translateX(-100%);
}

.offcanvas-header {
	padding: 18px 20px;
}

.offcanvas-body {
	padding: 12px 16px;
}

.offcanvas-body .navbar-nav .nav-link {
	padding: 12px 8px;
	font-size: 14px;
	color: #333;
	border-bottom: none;
	transition: color 0.2s ease;
	display: flex;
	align-items: center;
	gap: 10px;
}

.offcanvas-body .navbar-nav .nav-link:hover,
.offcanvas-body .navbar-nav .nav-link.active {
	color: #1174B8;
}

.offcanvas-body .navbar-nav .nav-link i {
	width: 20px;
	text-align: center;
	font-size: 16px;
}

.items-in-cart-mobile-view {
	font-weight: 600;
}

.navbar-nav h2,
.navbar-nav .menu-section-label {
	margin-top: 18px;
	margin-bottom: 6px;
	padding-bottom: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #aaa;
	border-bottom: 1px solid #f0f0f0;
}

.navbar-nav li a {
	color: #333 !important;
	font-size: 14px;
	padding: 10px 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.navbar-nav li a i {
	font-size: 16px;
	width: 20px;
	text-align: center;
	flex-shrink: 0;
}

.navbar-nav li a.active {
	color: #1174B8 !important;
}

nav .header_link {
	width: 70%;
}
nav .header_link img {
	max-height: 40px;
}


/* ------------------------------------------------------------------
   7. LAYOUT — LEFT MENU
   ------------------------------------------------------------------ */
.left-menu {
	position: sticky;
	top: 20px;
}

.left-menu ul li {
	border-bottom: 1px solid #f5f5f5;
}

.left-menu ul li a {
	color: #444;
	font-size: 14px;
	padding: 12px 8px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.left-menu ul li a:hover {
	color: #1174B8;
	background-color: #fdfdfd;
}

.left-menu ul li a:hover span:before,
.left-menu ul li a:hover i {
	color: #1174B8;
}

.left-menu ul li a.active {
	color: #1174B8;
	background-color: #f0f7ff;
	font-weight: 500;
}

.left-menu ul li a span {
	font-size: 20px;
	position: relative;
	top: 1px;
	flex-shrink: 0;
	width: 24px;
	text-align: center;
}

.left-menu ul li a i {
	font-size: 18px;
	flex-shrink: 0;
	width: 24px;
	text-align: center;
	transition: color 0.2s ease;
}


/* ------------------------------------------------------------------
   8. LAYOUT — MAIN CONTENT AREA
   ------------------------------------------------------------------ */
.v-background {
	background-color: rgba(255, 255, 255, 0.98);
	border-radius: 16px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
	padding: 28px;
	margin: 0 0 0.5em 0;
}

.page-title,
.v-title-box {
	margin-top: 0;
	margin-bottom: 20px;
	font-family: 'Poppins', Helvetica, sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 1.15rem;
	line-height: 1.4;
	color: #222;
	text-align: center;
	border-bottom: none;
}


/* ------------------------------------------------------------------
   9. PRODUCT CARD GRID (replaces carousel)
   ------------------------------------------------------------------ */
.product-grid {
	margin-bottom: 8px;
}

.product-card {
	border: none;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	background: #fff;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-card-img-wrapper {
	position: relative;
	overflow: hidden;
}

.product-card-img-wrapper .card-img-top {
	height: 180px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.product-card:hover .card-img-top {
	transform: scale(1.05);
}

.product-badge-discount {
	position: absolute;
	top: 10px;
	right: 10px;
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	letter-spacing: 0.3px;
}

.product-badge-free {
	position: absolute;
	top: 10px;
	right: 10px;
	background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
}

.product-card .card-body {
	padding: 14px;
}

.product-card .card-title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #222;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	float: none;
}

.product-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}

.product-original-price {
	font-size: 13px;
	color: #999;
	text-decoration: line-through;
}

.product-current-price {
	font-size: 17px;
	font-weight: 700;
	color: #1174B8;
}

.product-card-link {
	color: inherit;
	text-decoration: none;
}
.product-card-link:hover {
	color: inherit;
	text-decoration: none;
}


/* ------------------------------------------------------------------
   10. CAROUSEL (legacy — kept for backward compatibility)
   ------------------------------------------------------------------ */
.card-background.category-single-item-background .img-extra img {
	max-height: 7em;
}

.card-background.category-single-item-background .card-item-category-price {
	font-size: 25px;
	top: 10px;
	position: relative;
}

.card-background.category-single-item-background .card-item-savings {
	margin-top: 5px;
}

.featured-image {
	max-height: 300px !important;
	border-radius: 12px;
	object-fit: cover;
}

.featured-meta-data-box {
	background-color: #fdfdfd;
	text-align: center;
	padding: 16px 0;
	border-radius: 12px;
	margin-top: 16px;
}

.featured-meta-data-box h3 {
	font-size: 13px;
	font-weight: 400;
	color: #888;
}

.featured-meta-data-box p {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 2px;
	color: #222;
}

.carousel-indicators {
	top: 260px;
}

.carousel-caption {
	top: 62px;
}

.carousel-caption h5 {
	font-size: 26px;
	text-shadow: 1px 1px 4px #000000ea;
}

.carousel-caption p {
	display: inline-block;
	color: #ffffff;
	font-size: 30px;
	font-weight: 600;
	line-height: 90px;
	padding: 0 25px;
	height: 90px;
	border-radius: 45px;
}


/* ------------------------------------------------------------------
   11. CARDS & COMPONENTS
   ------------------------------------------------------------------ */
.customer-review {
	background-color: #fdfdfd;
	border-radius: 12px;
	padding: 20px 24px;
	margin-bottom: 16px;
	transition: box-shadow 0.2s ease;
}

.customer-review:hover {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.customer-review-name {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 0;
	float: left;
}

.customer-review-stars {
	float: right;
}

.customer-review-stars .customer-review-star {
	float: left;
	margin-left: 3px;
}

.customer-review-stars .customer-review-star-blue {
	float: left;
	margin-left: 3px;
}

.customer-review-stars .customer-review-star-blue span:before {
	color: #1174B8 !important;
}

.customer-review-rating {
	float: right;
}

.customer-review-date {
	float: left;
	font-weight: 700;
	clear: both;
	text-transform: capitalize;
	font-size: 13px;
	color: #888;
}

.customer-review-text {
	float: none;
	clear: both;
	margin-top: 8px;
	line-height: 1.6;
}

.card-background {
	margin-bottom: 16px;
	padding: 16px 10px 20px;
}

.card-background img {
	border-radius: 8px;
}

.card-background .card-title {
	font-size: 16px;
	font-weight: 600;
	float: left;
}

.card-background .card-divider {
	border-color: #f0f0f0;
	display: inline-block;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
}

.card-background .card-date {
	float: right;
	font-size: 11px;
	line-height: 20px;
	font-weight: 500;
	color: #888;
}

.card-background .card-code {
	width: 90px;
	background-color: #1174B8;
	padding: 10px;
	margin: 0px auto;
	border-radius: 8px;
	font-weight: 600;
	color: #ffffff;
}

.card-background .card-item {
	width: 100%;
	display: inline-block;
}

.card-background .card-item li {
	float: left;
}

.card-background .card-item-name { width: 50%; }
.card-background .card-item-qty { width: 20%; }
.card-background .card-item-price { width: 30%; text-align: right; }
.card-background .card-extra-text { font-size: 11px; color: #888; }

.card-background .card-item-reward { width: 80%; }
.card-background .card-item-code { width: 20%; text-align: right; }
.card-background .card-item-data-name { width: 30% !important; }
.card-background .card-item-data { width: 70%; text-align: right; }


/* ------------------------------------------------------------------
   12. LOYALTY CARD
   ------------------------------------------------------------------ */
.loyalty-card-background {
	border-radius: 16px;
	background-size: 100%;
	padding: 0px 14px 0px;
}

.loyalty-card-background-2 {
	border-top-left-radius: 48px;
	border-bottom-left-radius: 48px;
	border-top-right-radius: 150px 200px;
	border-bottom-right-radius: 150px 200px;
}

.loyalty-card-background .loyalty-card-text {
	color: #ffffff;
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 5px;
}

.loyalty-card-background .loyalty-card-subtext {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
}

.loyalty-card-background .loyalty-card-points {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	font-size: 13px;
	color: #1174B8;
	background-color: #ffffff;
	border-radius: 15px;
	padding: 0 20px;
	font-weight: 600;
}

.loyalty-card-background .card-code {
	background-color: #ffffff;
	font-size: 12px;
	color: #000000;
	font-weight: 600;
	padding: 5px 0 6px;
	border-radius: 0;
	line-height: 13px;
}

.loyalty-card-background img {
	width: 90px;
	height: 90px;
}

.card-qr-code {
	border-radius: 0 !important;
}

.card-item-category-price {
	width: 50%;
	font-size: 15px;
}

.card-item-category-expires {
	font-size: 15px !important;
	margin-top: -10px !important;
	top: 0 !important;
}

.featured-meta-data.category-meta-data .featured-meta-data-box {
	margin-top: 0;  
	margin-bottom: 24px;
}

.card-item-category-price span {
	font-weight: 600;
}

.card-item-savings {
	width: 50%;
	font-size: 13px;
	text-align: right;
}

.card-item-savings s {
	font-weight: 600;
}

.category-single-item-background {
	margin-bottom: 0;
}

.btn-add-to-cart {
	margin-top: 16px;
}


/* ------------------------------------------------------------------
   13. CART & CHECKOUT
   ------------------------------------------------------------------ */
.card-book-delivery {
	border-bottom: 1px solid #f0f0f0;
}

.card-book-delivery .card-title {
	display: inline-block;
	margin-bottom: 10px;
	width: 100%;
}

.card-book-delivery .card-title-total {
	margin-top: 10px;
}

.card-book-delivery .card-delivery-link {
	display: inline-block;
}

.card-delivery-link {
	border: 0px solid;
	text-decoration: underline;
	color: #0069d9;
	background: none;
}

button.card-delivery-link:focus {
	outline: 0px;
}

.more_img_modal {
	border-bottom: 0px;
}

.card-book-delivery .card-qty {
	font-size: 16px;
	font-weight: 500;
}

.card-book-delivery .input-quantity {
	height: 28px;
	width: 40px !important;
	display: inline-block;
	padding: 5px;
	text-align: center;
}

.card-book-delivery .card-item-discount {
	width: 100%;
	margin-top: 6px;
	margin-bottom: 10px;
	display: inline-block;
}

.card-book-delivery .card-item-price {
	text-align: right;
	width: 100%;
	margin-top: 5px;
}

.quantity-adjust {
	text-align: right;
}


/* ------------------------------------------------------------------
   14. PAYMENT METHODS
   ------------------------------------------------------------------ */
.payment-method-select {
	margin-bottom: 20px;
}

.payment-method-select .custom-control {
	padding: 0;
	width: 100%;
}

.payment-method-select .custom-control-input {
	display: none;
}

.payment-method-select .custom-control-label {
	width: 100%;
	margin: 0;
	padding: 0;
	min-width: auto;
	text-align: center;
	background-color: #fdfdfd;
	border-radius: 8px;
	border: 1px solid #eaeaea;
	margin-bottom: 1.5em;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-method-select .custom-control-label:hover {
	border-color: #1174B8;
	box-shadow: 0 0 0 2px rgba(17, 116, 184, 0.1);
}

.payment-method-select .custom-control-label:after {
	height: 70px;
	width: 100%;
	background-color: #fdfdfd;
	position: relative;
	left: auto;
	top: auto;
	border-radius: 8px;
	background-size: contain;
}

.payment-method-select .custom-control-label:before {
	display: none;
}

.payment-method-select .custom-control-paypal:after { background-image: url(../img/paypal-off.png); }
.payment-method-select .custom-control-satispay:after { background-image: url(../img/satispay-off.png); }
.payment-method-select .custom-control-card:after { background-image: url(../img/card-off.png); }
.payment-method-select .custom-control-shop:after { background-image: url(../img/shop-off.png); }
.payment-method-select .custom-control-delivery:after { background-image: url(../img/delivery-off.png); }

.custom-radio .custom-control-input:checked ~ .custom-control-paypal::after { background-image: url(../img/paypal.png); }
.custom-radio .custom-control-input:checked ~ .custom-control-satispay::after { background-image: url(../img/satispay.png); }
.custom-radio .custom-control-input:checked ~ .custom-control-card::after { background-image: url(../img/card.png); }
.custom-radio .custom-control-input:checked ~ .custom-control-shop::after { background-image: url(../img/shop.png); }
.custom-radio .custom-control-input:checked ~ .custom-control-delivery::after { background-image: url(../img/delivery.png); }


/* ------------------------------------------------------------------
   15. RIGHT MENU & STORE INFO
   ------------------------------------------------------------------ */
.right-menu .icon-phone { font-size: 18px; }
.right-menu .icon-mail { font-size: 12px; }
.right-menu .icon-marker { font-size: 18px; }

.right-menu .row {
	margin-top: 16px;
}

.right-menu .store-phone,
.right-menu .store-email,
.right-menu .store-address {
	font-size: 14px;
}

.right-menu .store-phone {
	margin-bottom: 5px;
}

.right-menu .store-email {
	color: #444;
}

.right-menu .store-email:hover {
	color: #1174B8;
}

.sociallinks {
	margin-top: 16px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.sociallinks img {
	width: 38px;
	max-width: 42px;
	border-radius: 8px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sociallinks img:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}


/* ------------------------------------------------------------------
   16. FOOTER
   ------------------------------------------------------------------ */
.footerWrapper {
	margin-top: 32px;
	padding: 20px 0;
	border-top: 1px solid #f0f0f0;
}

.branddescription {
	font-size: 13px;
	color: #aaa;
	padding: 8px 16px;
}

.branddescription a {
	color: #aaa;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.branddescription a:hover {
	color: #888;
}


/* ------------------------------------------------------------------
   17. FLOATING CONTACT BUTTON
   ------------------------------------------------------------------ */
.btn-floaticon {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1000;
}

.btn-contactsbox {
	border-radius: 16px;
	width: 260px;
	max-width: 300px;
	max-height: 50%;
	margin-bottom: 12px;
	padding: 8px;
	display: none;
	margin-left: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-contattacibox {
	border-radius: 50px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	padding: 12px 20px;
	width: auto;
	min-width: 56px;
	text-align: center;
	cursor: pointer;
	float: right;
	transition: all 0.3s ease;
}

.btn-contattacibox:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.btn-contatacibox-text {
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
}

.contact_icon_box {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin: 6px 0;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.2s ease;
	text-decoration: none;
	color: #333;
}

.contact_icon_box:hover {
	background: #fdfdfd;
	color: #1174B8;
	transform: translateX(2px);
}

.contact_icon_box i {
	font-size: 18px;
	flex-shrink: 0;
	width: 20px;
	text-align: center;
}

.contact_icon_box span {
	font-size: 14px;
	font-weight: 500;
}

.btn-contact-ico {
	padding: 10px;
	margin-right: 4px;
	width: 12%;
	min-width: 40px;
}

.btn-contact-link {
	font-size: 14px;
	text-decoration: none;
}

.contact_text_box {
	display: inline-block;
	text-align: center;
	width: 50%;
}

.contact_link_box {
	font-size: 14px;
	text-decoration: none;
	color: #333;
	text-align: center;
}

.distance {
	margin-right: 10px;
	margin-left: 10px;
}


/* ------------------------------------------------------------------
   18. PROMO, INFO & MISC SECTIONS
   ------------------------------------------------------------------ */
.text_promo_inc .heading,
.informationArea .heading {
	font-size: 1.75em;
	padding: 0px 8px 20px;
	text-align: center;
	line-height: 1.3em;
}

.catgoryListFooterMobile li {
	margin: 10px 8px;
}

.catgoryListFooterMobile li a {
	padding: 8px 16px;
	display: inline-block;
	background: #fdfdfd;
	border-radius: 8px;
	color: #444;
	font-size: 14px;
	transition: all 0.2s ease;
}

.catgoryListFooterMobile li a:hover {
	background: #1174B8;
	color: #fff;
}

.icon-tag { font-size: 20px; padding-top: 12px; }

.subcategory-listing {
	background-color: #fdfdfd !important;
	padding: 14px 18px !important;
	margin: 8px 0 !important;
	border-radius: 8px;
}

.action_name_container {
	color: #1174B8;
}

.ConfirmYesDeletionAction, .ConfirmNoDeletionAction {
	color: #721c24 !important;
	background-color: #f8d7da !important;
	border: 1px solid #f5c6cb !important;
	border-radius: 8px !important;
	padding: 6px 18px;
	margin: 10px 0 0 16px;
	display: inline-block;
	transition: background-color 0.2s ease;
}

.prod_attr_container {
	margin-top: 16px;
}

.unsubscribefromBox h2 {
	margin-top: 0;
}

img.fb_button {
	margin: 10px 0;
	max-height: 38px;
}

.icon-www:before {
	font-size: 14px;
}

.cart-item-image { max-height: 240px; border-radius: 8px; }

.display_none {
	display: none !important;
}

.pay-in-store fieldset {
	padding: 0 !important;
	margin-bottom: 0 !important;
}

.pay-in-store .alert, .pay-in-store .success {
	background-color: transparent !important;
	border: none !important;
	color: #000000 !important;
	padding: 0 !important;
}


/* ------------------------------------------------------------------
   19. SOCIAL & LOGIN BUTTONS
   ------------------------------------------------------------------ */
.btn-fb {
	border-color: rgba(211,211,211,0.4);
	border-radius: 8px;
	font-size: 14px;
	width: 100%;
	box-shadow: 0 2px 4px rgba(0,0,0,0.06);
	margin-bottom: 12px;
	padding: 8px 12px;
	transition: all 0.2s ease;
}

.btn-fb:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transform: translateY(-1px);
}

.btn-fb-image {
	background-position-x: left;
	background-position-y: 50%;
	padding-left: 10px;
	padding-right: 10px;
}


/* ------------------------------------------------------------------
   20. WHATSAPP FOLLOW BOX
   ------------------------------------------------------------------ */
.follow-whatsapp-box {
	background-color: #25d366;
	color: #fff;
	cursor: pointer;
	border-radius: 16px;
	font-size: 1.1rem;
	line-height: 1.4rem;
	transition: all 0.25s ease;
	box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.follow-whatsapp-box:hover {
	background-color: #20bd5a;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

@media (min-width: 992px) {
	.follow-whatsapp-box {
		font-size: 0.95rem;
		line-height: 1.3rem;
	}
}


/* ------------------------------------------------------------------
   21. LOADER
   ------------------------------------------------------------------ */
.loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(2px);
}

.loader {
	width: 44px;
	aspect-ratio: 1;
	display: grid;
	border: 4px solid #0000;
	border-radius: 50%;
	border-right-color: #25b09b;
	animation: l15 1s infinite linear;
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.loader::before,
.loader::after {    
	content: "";
	grid-area: 1/1;
	margin: 2px;
	border: inherit;
	border-radius: 50%;
	animation: l15 2s infinite;
}

.loader::after {
	margin: 8px;
	animation-duration: 3s;
}

@keyframes l15 { 
	100% { transform: rotate(1turn); }
}


/* ------------------------------------------------------------------
   22. MISC UTILITIES
   ------------------------------------------------------------------ */
.backgroungimg {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../img/sfondo.png) no-repeat center top;
	position: fixed;
	z-index: -1;
	background-size: cover;
}

.qr_code {
	text-align: center;
}

.trackCall { cursor: pointer; color: #0069d9; }

.iti--separate-dial-code, .iti.iti--inline-dropdown { width: 100%; }
.iti--separate-dial-code > input { padding-left: 100px !important; }
.iti__flag-container > .iti__selected-flag { padding: 0 10px 0 14px; }


/* ------------------------------------------------------------------
   23. RESPONSIVE — Large screens
   ------------------------------------------------------------------ */
@media (max-width: 1199px) {
	.loyalty-card-background .loyalty-card-subtext { font-size: 14px; }
	.loyalty-card-background .loyalty-card-text { font-size: 16px; }
	.loyalty-card-background .card-code { width: 90px; }
	.loyalty-card-background img { width: 90px !important; height: 90px; }
	.all-prizes h2 { margin-top: 0; }
	.category-single-item-background .card-title { margin-top: 20px; }
	iframe { width: 100% !important; }
	.carousel-caption { top: 35px; }
	.carousel-indicators { top: 210px; }
}


/* ------------------------------------------------------------------
   24. RESPONSIVE — Tablet
   ------------------------------------------------------------------ */
@media (max-width: 992px) {
	nav .search_container, nav .search_container .search_input {
		width: 100%;
		margin-top: 5px;
	}

	.card-background img {
		margin-bottom: 16px;
	}

	.cart_details .card-title {
		margin-top: 16px;
	}

	.loyalty-card-background .loyalty-card-subtext { font-size: 16px; }
	.loyalty-card-background .loyalty-card-text { font-size: 20px; margin-top: 15px; }

	.category-single-item-background .card-title { margin-top: 0px; }

	.carousel-item .featured-image { max-height: 250px !important; }

	.mobile-gray-background {
		padding-bottom: 24px;
	}
}


/* ------------------------------------------------------------------
   25. RESPONSIVE — Small screens
   ------------------------------------------------------------------ */
@media (max-width: 684px) {
	.card-background {
		margin-bottom: 10px;
	}

	.v-featured-meta-data-box {
		padding-right: 12px;
		padding-left: 12px;
	}
}

@media (max-width: 991px) {
	.v-background {
		position: relative;
		border-radius: 20px 20px 0 0;
		box-shadow: none;
		margin-left: calc(-0.5 * var(--bs-gutter-x, 1.5rem));
		margin-right: calc(-0.5 * var(--bs-gutter-x, 1.5rem));
		margin-top: 8px;
		padding: 24px 16px;
		min-height: 80vh;
	}

	.v-background.v-background-img {
		margin-top: 10vw;
	}

	.mobile-bg-img img {
		z-index: 0 !important;
	}
}

@media (max-width: 575px) {
	.v-background {
		padding: 18px 14px;
	}

	.page-title,
	.v-title-box {
		padding: 0;
	}

	.product-card-img-wrapper .card-img-top {
		height: 140px;
	}

	.product-card .card-title {
		font-size: 13px;
	}

	.product-current-price {
		font-size: 15px;
	}
}

@media (max-width: 576px) {
	.quantity-adjust { margin-top: 0px; }
	.card-book-delivery .card-title-total { margin-top: 0; }

	.carousel-item .featured-image { max-height: 200px !important; height: 200px !important; }
	.carousel-caption p { font-size: 20px; line-height: 50px; padding: 0 12px; height: 50px; border-radius: 50px; }
	.carousel-caption h5 { font-size: 20px; }
	.carousel-caption { top: 35px; }
	.carousel-indicators { top: 170px; }

	.loyalty-card-background {
		background-image: none;
		text-align: center;
		border-top-right-radius: 55px 65px;
	}

	.card-background.category-single-item-background .card-item-category-price { font-size: 22px; }
	.card-item-category-expires { font-size: 13px !important; top: -10px !important; }
}

@media (max-width: 476px) {
	.btn-contact-ico { width: 15%; }

	.btn-contattacibox {
		padding: 10px 16px;
	}
}


/* ==================================================================
   26. DIGITAL MENU — QodeUp-style accordion
   ================================================================== */
.dm-page {
	padding: 0;
}

.dm-page-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 8px 0 4px;
	border-bottom: none;
	color: #222;
}

.dm-page-subtitle {
	font-size: 0.9rem;
	color: #888;
	margin-bottom: 16px;
}

.dm-pdf-link {
	margin-bottom: 16px;
}

/* --- Category accordion header --- */
.dm-category {
	margin-bottom: 10px;
}

.dm-category-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 18px;
	border: none;
	border-radius: 12px;
	background-color: #1174B8;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: opacity 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.dm-category-header:hover {
	opacity: 0.92;
}

.dm-category-header:focus {
	outline: none;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.dm-category-count {
	font-weight: 400;
	opacity: 0.85;
}

.dm-category-arrow {
	font-size: 16px;
	transition: transform 0.3s ease;
}

.dm-category-header:not(.collapsed) .dm-category-arrow {
	transform: rotate(180deg);
}

.dm-category-desc {
	font-size: 0.85rem;
	color: #777;
	padding: 10px 4px 2px;
	margin: 0;
	font-style: italic;
}

/* --- Product list inside a category --- */
.dm-product-list {
	padding: 4px 0;
}

.dm-product {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 4px;
	border-bottom: 1px solid #f0f0f0;
}

.dm-product:last-child {
	border-bottom: none;
}

.dm-product-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.dm-product-clickable {
	cursor: pointer;
}

.dm-product-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: 6px;
}

.dm-product-img {
	flex-shrink: 0;
	width: 68px;
	height: 68px;
	border-radius: 8px;
	overflow: hidden;
}

.dm-product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dm-product-name {
	font-size: 0.92rem;
	font-weight: 700;
	color: #222;
	margin: 0 0 2px;
	line-height: 1.3;
}

.dm-product-desc {
	font-size: 0.8rem;
	color: #888;
	margin: 0 0 6px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dm-product-price {
	font-size: 0.92rem;
	font-weight: 600;
	color: #333;
}

.dm-product-discount {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	background: #e74c3c;
	padding: 1px 7px;
	border-radius: 10px;
	margin-left: 6px;
	vertical-align: middle;
}

/* --- Cart controls aligned with price --- */
.dm-product-cart-controls {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}

.dm-qty-btn {
	width: 30px;
	height: 30px;
	line-height: 30px;
	padding: 0;
	font-size: 15px;
	border-radius: 50%;
}

.dm-qty-input {
	width: 44px !important;
	text-align: center;
	font-size: 14px;
	padding: 4px;
	height: 30px;
	border-radius: 6px;
}

/* --- Cart total bar --- */
.dm-cart-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	margin-top: 16px;
	background: #f5f5f5;
	border-radius: 12px;
	gap: 12px;
}

.dm-cart-total-text {
	font-size: 1.05rem;
	font-weight: 600;
}

.dm-cart-total-btn {
	white-space: nowrap;
}

/* --- Signup banner --- */
.dm-signup-banner {
	margin-top: 24px;
	border-radius: 12px;
	background-image: url('/library/img/p/dm-signup-bg.png');
	background-position: center;
	background-size: cover;
	cursor: pointer;
	overflow: hidden;
}

.dm-signup-banner-inner {
	margin: 16px;
	padding: 20px;
	border-radius: 10px;
	background-color: rgba(255,255,255,0.75);
	font-size: 0.95rem;
}

.dm-empty {
	text-align: center;
	padding: 32px 16px;
	color: #888;
}

/* --- Responsive adjustments --- */
@media (max-width: 575px) {
	.dm-category-header {
		padding: 12px 14px;
		font-size: 0.82rem;
		border-radius: 10px;
	}

	.dm-product {
		gap: 10px;
		padding: 12px 2px;
	}

	.dm-product-img {
		width: 58px;
		height: 58px;
	}

	.dm-product-name {
		font-size: 0.88rem;
	}

	.dm-cart-total {
		flex-direction: column;
		text-align: center;
	}

	.dm-cart-total-btn {
		width: 100%;
	}
}
