


    
	html, body {
		overflow-x: hidden !important;
		touch-action: pan-y !important; 
	}
    body {
      background-color: #F5F5F5;
      color: #fff;
      font-family: 'Roboto', sans-serif;
    }
    .header {
      background-color: white;
      padding: 1rem;
    }
    .logo {
      height: 45px;
    }

	.nav-menu {
		background-color: #282828;
		padding: 1rem 0;
	}

	.nav-menu a {
		color: #F5F5F5;
		margin: 0 1rem;
		text-decoration: none;
		font-weight: 600; 
	}	
	
	
	.product-card {
		background-color: #F5F5F5;
		border: 1px solid #333;
		border-radius: 10px;
		padding: 1rem;
		margin-bottom: 2rem;
		text-align: center;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.product-card h5,
	.product-card p {
		font-size: 1.6rem; 
		font-weight: 700;  
		color: #282828;    
		margin-bottom: 0.5rem;
	}

	.product-title {
		min-height: 3.6em; 
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

    .product-card img {
      max-width: 100%;
      height: auto;
    }

	.btn-add-cart:hover {
		background-color: #444;
	}

	.btn-add-cart {
		background-color: #282828;
		color: #F5F5F5;
		border: none;
		width: 100%;
	}

	.product-wrapper {
		padding: 1rem;
		flex: 1 0 auto;
	}

	.product-card img.img-fluid {
		border-radius: 10px;
	}

	#product-list {
		display: flex;
		flex-wrap: wrap;
		margin: -1rem;
	}
	
	#count-products {
		font-size: 1rem;
		font-weight: 500;
		color: #333;
	}


	.product-wrapper {
		width: calc(100% / var(--prodotti-per-riga));
		}

	@media (max-width: 991px) {
		.product-wrapper {
			width: 50%;
		}
	}

	@media (max-width: 575px) {
		.product-wrapper {
		width: 100%;
		}
	}
	
	
	

.boutique-badge {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #d8b945 0%, #f1e3a0 50%, #c7a12b 100%);
  color: #1a150a;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.04em;
  padding: 10px 0;
  margin-top: 2px;             
  margin-bottom: 0;
  border: none;
  border-radius: 0;            
  text-align: center;          
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25); 
  position: relative;
  z-index: 5;
}


.boutique-badge {
  opacity: 0;
  transform: translateY(5px);
  animation: badgeFadeIn 0.6s ease forwards 0.3s;
}

@keyframes badgeFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

body > main > main > div.boutique-badge.text-center.mx-auto.my-3  {
	position: relative; 
	top: -20px;
}


body > main > main > div.brand-slider-container {
	display: none;
	height: 0px !important;
}


@media (max-width: 576px) {
  .boutique-badge {
    font-size: 1rem;
    padding: 8px 0;
  }
}


@keyframes badgeFadeIn {
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 576px) {
  .boutique-badge {
    font-size: 1rem;
    padding: 5px 18px;
  }
}

@keyframes badgeFadeIn {
  to { opacity: 1; transform: translateY(0); }
}	






#price-filter label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #333; 
  margin-bottom: 0.5rem;
}


#price-filter {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}


#price-filter input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: #3a3a3a; 
  outline: none;
  transition: background 0.3s ease;
}


#price-filter input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d8b945, #b8983d);
  border: 1px solid #b8a05d;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

#price-filter input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

#price-filter input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d8b945, #b8983d);
  border: 1px solid #b8a05d;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

#price-filter input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}


#price-min-label,
#price-max-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #333;
}


#reset-price-filter {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #444;
  border: 1px solid #b8a05d;
  border-radius: 6px;
  background: linear-gradient(to bottom, #fffdf8, #f5f1e6);
  padding: 3px 10px;
  transition: all 0.2s ease-in-out;
}

#reset-price-filter:hover {
  background: #fff9ed;
  border-color: #d4b867;
  color: #111;
}


.container-price-filter {
  display: flex;
  flex-wrap: nowrap; 
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.filter-column {
  flex-shrink: 0; 
  box-sizing: border-box;
}


.filter-left {
  flex: 0 0 60%; 
  min-width: 0; 
}


.filter-right {
  flex: 0 0 40%; 
  min-width: 0;
}


@media (max-width: 992px) {
  .container-price-filter {
    flex-wrap: wrap;
  }
  .filter-left,
  .filter-right {
    flex: 0 0 100%;
  }
}






.brand-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 20, 20, 0.85);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}


.brand-modal-content {
  width: 90%;
  max-width: 600px;
  background: #fffdf8;
  border: 2px solid #b8a05d;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  overflow: hidden;
  animation: scaleIn 0.3s ease;
}


.brand-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #d8b945 0%, #f1e3a0 50%, #c7a12b 100%);
  color: #1a150a;
  padding: 12px 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-bottom: 1px solid #b8a05d;
}


.brand-close-btn {
  background: none;
  border: none;
  font-size: 1.6rem;
  font-weight: bold;
  color: #1a150a;
  cursor: pointer;
  transition: color 0.2s ease;
}
.brand-close-btn:hover {
  color: #5c4b1b;
}


.brand-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
}
.brand-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #333;
  padding: 6px 0;
}


.brand-option input[type="checkbox"] {
  width: 22px;     
  height: 22px;    
  margin-right: 8px;
  accent-color: #d4af37; 
  cursor: pointer;
}


.brand-modal-footer {
  padding: 12px 20px;
  text-align: right;
  background: #f9f6eb;
  border-top: 1px solid #b8a05d;
}
.brand-apply-btn {
  background: linear-gradient(to bottom, #fffdf8, #f5f1e6);
  border: 1px solid #b8a05d;
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  border-radius: 8px;
  padding: 6px 20px;
  transition: all 0.2s ease;
}
.brand-apply-btn:hover {
  background: #fff9ed;
  border-color: #d4b867;
}


@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { transform: scale(0.92); } to { transform: scale(1); } }


.brand-modal-body::-webkit-scrollbar {
  width: 8px;
}
.brand-modal-body::-webkit-scrollbar-thumb {
  background-color: #b8a05d;
  border-radius: 4px;
}


@media (max-width: 768px) {
  .brand-modal {
    align-items: flex-start;
  }

  .brand-modal-content {
    width: 100%;
    max-width: none;
    height: 100vh;
    max-height: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    animation: slideUp 0.3s ease;
  }

  .brand-modal-header {
    padding: 16px;
    font-size: 1rem;
  }

  .brand-modal-body {
    padding: 20px;
  }

  .brand-modal-footer {
    position: sticky;
    bottom: 0;
    background: linear-gradient(to bottom, #fffdf8, #f5f1e6);
    border-top: 1px solid #b8a05d;
  }

  .brand-apply-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 10px;
  }

  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
}



#brand-modal .brand-apply-btn {
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
  
}



#brand-select-btn {
  display: inline-block;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;  
  font-size: 0.8rem;	 
  color: #111; 
  background: linear-gradient(145deg, #d8b945, #b8983d); 
  border: 1px solid #b8a05d;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}


#brand-select-btn:hover {
  background: linear-gradient(145deg, #e2c158, #caa94b);
  border-color: #d4b867;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.25);
}


#brand-select-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}


.brand-selector label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #333; 
  margin-bottom: 0.4rem;
}


.brand-count {
  color: #777;
  font-weight: 400;
  font-size: 0.9rem;
  margin-left: 4px;
}



.lp-btn-favorite {
  background: transparent;
  border: none;
  color: #bfa14a; 
  font-size: 1.3rem;
  margin-left: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
}

.lp-btn-favorite:hover {
  transform: scale(1.15);
  color: #d6b960;
}





.lp-btn-favorite.active i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  color: #e6c97c; 
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.4); 
  -webkit-text-stroke: 0.6px #000; 
  transform: scale(1.1); 
  transition: all 0.2s ease-in-out;
}


.lp-btn-favorite.disabled {
  color: #ccc !important;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none !important;
  pointer-events: none; 
}

.lp-btn-favorite.disabled i {
  color: #bbb !important;
}

.lp-btn-favorite.active i {
  color: #bfa14a !important; 
  transition: color 0.3s ease;
}



  
    :root{
      --vdm-bg:#ffffff;
      --vdm-text:#161616;
      --vdm-muted:#6b6b6b;
      --vdm-accent:#111111;
      --vdm-accent-cta:#111111;
      --vdm-accent-cta-text:#ffffff;
      --vdm-border:#eaeaea;
      --vdm-price:#0f0f0f;
      --vdm-badge:#f5f5f5;
      --radius:14px;
      --shadow:0 6px 20px rgba(0,0,0,.06);
    }

    html,body{background:var(--vdm-bg); color:var(--vdm-text); margin:0; padding:0;}
    body{font-family:Poppins, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;}
    .vdm-container{max-width:960px; margin:0 auto; padding:16px;}
    @media(min-width:768px){ .vdm-container{padding:24px;} }

    .pd-title{font-family:"Playfair Display", serif; font-weight:600; font-size:clamp(22px,3.8vw,34px); margin:6px 0 8px;}
    .pd-brand{font-weight:500; font-size:14px; letter-spacing:.4px; color:var(--vdm-muted); text-transform:uppercase;}
    .pd-price{font-weight:600; font-size:clamp(18px,3.5vw,24px); color:var(--vdm-price); margin:8px 0 0;}

    .pd-gallery{position:relative; border:1px solid var(--vdm-border); border-radius:var(--radius); overflow:hidden; background:#fff;}
    .pd-main{aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;}
    .pd-main img{max-width:100%; max-height:100%; transition:transform .15s ease; will-change:transform;}
    .pd-thumbs{display:flex; gap:8px; overflow:auto; padding:10px; border-top:1px solid var(--vdm-border);}
    .pd-thumb{flex:0 0 72px; height:72px; border:1px solid var(--vdm-border); border-radius:10px; overflow:hidden; cursor:pointer; background:#fff;}
    .pd-thumb img{width:100%; height:100%; object-fit:cover;}
    .pd-thumb.active{outline:2px solid #000; outline-offset:-2px}

    .pd-block{margin-top:16px; padding:16px; border:1px solid var(--vdm-border); border-radius:var(--radius); background:#fff;}
    .pd-badge{display:inline-block; background:var(--vdm-badge); color:var(--vdm-text); padding:6px 10px; border-radius:999px; font-size:12px; margin-top:6px}
	
	
	.pd-pricebox {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
	
	.pd-rate-badge {
		font-size: 11px;
		padding: 3px 6px;
		opacity: 0.8;
		margin-top: 3px;
		background: var(--vdm-badge);
		color: var(--vdm-text);
		border-radius: 8px;
	}

    .pd-cta-bar{position:sticky; bottom:0; background:#fff; border-top:1px solid var(--vdm-border); padding:10px 12px; display:flex; align-items:center; gap:10px; z-index:20;}
    .pd-cta-bar .pd-cta-price{font-weight:600; font-size:18px; margin-right:auto;}
    

	.pd-cta-btn{ appearance:none;
				 border:0; 
				 background:var(--vdm-accent-cta);
				 color:var(--vdm-accent-cta-text);
				 border-radius:12px;
				 padding:14px 18px;
				 font-weight:600;
				 font-size:16px;
				 letter-spacing:.2px;
				 box-shadow:var(--shadow);
				 cursor:pointer;
				 width:45%; 
				 }
	
    .pd-cta-btn:disabled{opacity:.5; cursor:not-allowed}
    .stock-msg{font-size:12px; color:var(--vdm-muted); margin-top:6px}

    @media(min-width:960px){
      .pd-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:24px; align-items:start;}
      .pd-cta-bar{position:static; border:1px solid var(--vdm-border); border-radius:var(--radius);}
    }
	
	
	
.cart-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(3px);
}

.cart-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  max-width: 420px;
  width: 90%;
  animation: modalFadeIn .25s ease-out;
  position: relative;
}

.cart-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

.cart-modal-body {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.cart-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ddd;
}



.cart-img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.cart-authenticity-badge {
  width: 80px;       
  height: auto;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
  opacity: 0.95;
  image-rendering: -webkit-optimize-contrast;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.cart-authenticity-badge:hover {
  transform: scale(1.05);
  opacity: 1;
}

.cart-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ddd;
}


.cart-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--vdm-text);
  margin: 0 0 4px;
}

.cart-pricebox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cart-price {
  font-weight: 700;
  font-size: 18px;
  color: var(--vdm-price);
}

.cart-shipping {
  margin-top: 10px;
  font-size: 13px;
  color: var(--vdm-muted);
  font-style: italic;
}

.cart-modal-actions .btn {
  font-size: 15px;
  padding: 10px;
  border-radius: 10px;
}



.cart-payments {
  text-align: center;
  border-top: 1px solid var(--vdm-border);
  margin-top: 16px;
  padding-top: 12px;
}

.cart-payments-title {
  font-size: 13px;
  color: var(--vdm-muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 500;
}

.cart-payment-icons i,
.cart-payment-icons img {
  color: #222;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cart-payment-icons i:hover,
.cart-payment-icons img:hover {
  transform: scale(1.12);
  opacity: 1;
}

.cart-payment-icons {
  gap: 9px 8px; 
}



.cart-payments-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--vdm-accent);
  margin: 6px auto 8px;
  opacity: 0.15;
}


@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.payment-icon {
  height: 14px;              
  width: auto;               
  opacity: 0.9;
  image-rendering: -webkit-optimize-contrast;  
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.payment-icon:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.25));
}



.cart-authenticity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  text-align: center;
  color: var(--vdm-text);
  font-size: 13px;
  font-weight: 500;
  background: #fafafa;
  border: 1px solid var(--vdm-border);
  border-radius: 10px;
  padding: 6px 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.authenticity-icon {
  height: 24px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

.authenticity-text {
  font-size: 12.5px;
  color: var(--vdm-muted);
}

.cart-authenticity:hover .authenticity-icon {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}


.contact-box {
  background: #fff;
  border: 1px solid var(--vdm-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 12px;
  margin-top: 16px;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--vdm-text);
  font-size: 17px;
}

.contact-buttons {
  margin-top: 8px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
  font-size: 14px;
}

.contact-btn i {
  font-size: 18px;
}

.contact-btn.whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 3px 6px rgba(37, 211, 102, 0.3);
}

.contact-btn.phone {
  background: #111;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.contact-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}


.contact-btn-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-size: 34px; 
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none !important; 
}

.contact-btn-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.5);
  color: #fff;
  text-decoration: none !important; 
}
	

.promo-tag {
  position: absolute;
  top: -10px;
  left: 0;
  background: linear-gradient(145deg, #d4af37, #e9d690);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-family: 'Poppins', sans-serif;
  z-index: 3;
}

.discount-circle {
  position: absolute;
  top: -15px;
  right: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d4af37, #e9d690);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  font-family: 'Poppins', sans-serif;
}

.pd-price .old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.85rem;
  margin-right: 6px;
}


.pd-price .promo-price {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 1.6rem;
  color: #000;
  padding: 2px 10px 2px 6px;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(212,175,55,0.35) 0%, rgba(233,214,144,0.15) 35%, rgba(255,255,255,0) 100%);
  box-shadow: inset 0 0 8px rgba(212,175,55,0.25);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}



.promo-banner {
  background: linear-gradient(145deg, #d4af37, #e9d690);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  color: #fff;
  padding: 18px 20px;
  margin: 18px 0 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
  transform: skewX(-25deg);
  animation: shimmer 4s infinite linear;
  opacity: 0.6;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.promo-banner-content h5 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.promo-banner-content p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}

.promo-banner-content strong {
  color: #fff;
  font-weight: 700;
}

.promo-banner-content em {
  font-style: italic;
  opacity: 0.95;
  font-size: 0.9rem;
}

.promo-banner i.fa-star {
  margin-right: 6px;
  color: #fff;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.3));
}



.pd-cta-price {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 1.3rem;
  color: #000;
  padding: 4px 12px 4px 8px;
  border-radius: 6px;
  background: linear-gradient(90deg,
              rgba(212,175,55,0.35) 0%,
              rgba(233,214,144,0.18) 40%,
              rgba(255,255,255,0) 100%);
  box-shadow: inset 0 0 8px rgba(212,175,55,0.2);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}	



.pd-cta-bar .pd-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  width:48%;
  padding:14px 18px;
  border-radius:12px;
  border:0;
  cursor:pointer;

  
  background: var(--vdm-accent-cta);
  color: var(--vdm-accent-cta-text);
  box-shadow: var(--shadow), 0 6px 16px rgba(0,0,0,.08);

  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight:600;
  font-size:16px;
  letter-spacing:.2px;

  position:relative;
  overflow:hidden;
  transition: transform .2s ease, box-shadow .25s ease, opacity .2s ease;
}


.pd-cta-bar .pd-cta-btn::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(212,175,55,.22) 0%, rgba(255,255,255,0) 60%);
  opacity:.28;
  pointer-events:none;
  transition: opacity .25s ease;
}


.pd-cta-bar .pd-cta-btn i{
  font-size:18px;
  
  color: rgba(212,175,55,.95);
  transition: transform .2s ease, color .2s ease;
}


.pd-cta-bar .pd-cta-btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow), 0 10px 24px rgba(0,0,0,.12);
}
.pd-cta-bar .pd-cta-btn:hover::after{ opacity:.34; }
.pd-cta-bar .pd-cta-btn:hover i{ transform: scale(1.12); }


.pd-cta-bar .pd-cta-btn:disabled{
  opacity:.55; cursor:not-allowed; transform:none;
  box-shadow: var(--shadow);
}


@keyframes bounceInUp {
  0% {
    transform: translateY(180%) scale(0.8);
    opacity: 0;
  }
  50% {
    transform: translateY(-15%) scale(1.1);
    opacity: 1;
  }
  70% {
    transform: translateY(8%) scale(0.95);
  }
  85% {
    transform: translateY(-4%) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1; 
  }
}


.boutique-badge {
  opacity: 0;
  transform: translateY(200%) scale(0.7);
}


.boutique-badge.ready {
  animation: bounceInUp 1s cubic-bezier(0.68, -0.55, 0.27, 1.55)
             forwards; 
  animation-delay: 0.3s;
}




.top-nav-icons {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header {
  margin-top: 60px; 
}

.top-nav-icons #cart-widget {
  position: static !important; 
}

.top-nav-icons .cart-container {
  display: flex;
  align-items: center;
  gap: 12px;
}


.nav-top {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  min-height: 48px;
  z-index: 50;
}


.nav-top #cart-widget {
  position: static !important;
  top: auto !important;
  right: auto !important;
}

.nav-top .cart-container {
  display: flex;
  align-items: center;
  gap: 14px;
}


.nav-top .cart-container i {
  font-size: 1.4rem;
}


.nav-top .cart-badge,
.nav-top .wishlist-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  font-size: 0.7rem;
}


@media (min-width: 992px) {
  #product-list > div > div:nth-child(even) > div > a > img,
  #product-list > div > div:nth-child(odd) > div > a > img {
    width: 20em !important;
  }
}

