/**
 * Classic Rose Modern UI layer
 * Visual-only overrides for PrestaShop Classic 8.2.x.
 * The logo image dimensions are deliberately not overridden.
 */

:root {
  --rose-50: #fff7fb;
  --rose-100: #ffeaf4;
  --rose-200: #ffd0e5;
  --rose-300: #ffaccf;
  --rose-400: #ff7db5;
  --rose-500: #f64f96;
  --rose-600: #df2f7d;
  --rose-700: #b91f64;
  --rose-800: #941d53;
  --rose-900: #7a1b49;
  --plum-950: #2b1323;
  --ink-900: #2d2030;
  --ink-700: #5f4b5c;
  --ink-500: #8c7485;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --surface-soft: rgba(255, 247, 251, 0.86);
  --line: rgba(185, 31, 100, 0.13);
  --line-strong: rgba(185, 31, 100, 0.25);
  --shadow-sm: 0 8px 24px rgba(93, 28, 63, 0.08);
  --shadow-md: 0 18px 50px rgba(93, 28, 63, 0.13);
  --shadow-lg: 0 30px 80px rgba(93, 28, 63, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.2, 0.9, 0.25, 1.18);
}

html {
  scroll-behavior: smooth;
  background: #f7d6e6;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink-900);
  background:
    linear-gradient(135deg, #da6ea4 0%, #f2aacd 18%, #ffe2f0 42%, #ee97c0 74%, #a8326d 100%);
  background-size: 200% 200%;
  animation: rose-bg-wave 18s var(--ease-out) infinite alternate;
}

body::before,
body::after {
  position: fixed;
  z-index: -2;
  content: "";
  pointer-events: none;
  opacity: 0.55;
  filter: blur(90px);
  will-change: transform;
}

body::before {
  top: -10rem;
  left: -12rem;
  width: 42rem;
  height: 22rem;
  border-radius: 46% 54% 60% 40% / 58% 41% 59% 42%;
  background: linear-gradient(135deg, rgba(168, 50, 109, 0.42), rgba(255, 182, 213, 0.26));
  animation: rose-wave-one 20s ease-in-out infinite alternate;
}

body::after {
  right: -12rem;
  bottom: -10rem;
  width: 40rem;
  height: 20rem;
  border-radius: 58% 42% 44% 56% / 48% 59% 41% 52%;
  background: linear-gradient(135deg, rgba(255, 154, 205, 0.36), rgba(122, 27, 73, 0.24));
  animation: rose-wave-two 24s ease-in-out infinite alternate;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: var(--rose-50);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--rose-50);
  border-radius: 999px;
  background: linear-gradient(var(--rose-400), var(--rose-700));
}

@keyframes rose-bg-wave {
  0% { background-position: 0% 20%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 12% 100%; }
}

@keyframes rose-wave-one {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50% { transform: translate3d(12vw, 8vh, 0) rotate(6deg) scale(1.08); }
  100% { transform: translate3d(2vw, 34vh, 0) rotate(-3deg) scale(0.96); }
}

@keyframes rose-wave-two {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(0.98); }
  50% { transform: translate3d(-14vw, -10vh, 0) rotate(-7deg) scale(1.06); }
  100% { transform: translate3d(-5vw, -28vh, 0) rotate(3deg) scale(1); }
}

::selection {
  color: #fff;
  background: var(--rose-600);
}

/* Accessible focus treatment */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(246, 79, 150, 0.38) !important;
  outline-offset: 3px;
}

a {
  color: var(--rose-700);
  transition: color 180ms ease, opacity 180ms ease;
}

a:hover,
a:focus {
  color: var(--rose-600);
  text-decoration: none;
}

/* Global layout surfaces */
#wrapper {
  position: relative;
  padding-top: 1.75rem;
  overflow: clip;
  background: transparent;
}

#wrapper::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(246, 79, 150, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 79, 150, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 75%, transparent);
}

.container {
  width: min(100% - 30px, 1140px);
}

.card,
.page-content.card,
.block-category,
#search_filters,
.contact-form,
.login-form,
.register-form,
.address-form,
.order-confirmation-table,
body#checkout section.checkout-step {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.page-content.card,
.contact-form,
.login-form,
.register-form,
.address-form {
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--ink-900);
  letter-spacing: -0.025em;
}

.page-header h1,
.products-section-title,
.featured-products > h2,
.product-accessories > h3,
.crossselling-product > h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.75rem;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.08;
}

.page-header h1::after,
.products-section-title::after,
.featured-products > h2::after,
.product-accessories > h3::after,
.crossselling-product > h2::after {
  display: block;
  width: 58%;
  height: 5px;
  margin-top: 0.55rem;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose-500), var(--rose-300), transparent);
}

/* Header: layout preserved, visual layer modernized */
#header {
  position: relative;
  z-index: 100;
  color: var(--ink-900);
  background: linear-gradient(135deg, rgba(255, 219, 235, 0.46), rgba(244, 154, 198, 0.24), rgba(255, 244, 249, 0.18));
  border-bottom: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 10px 34px rgba(124, 32, 77, 0.10), inset 0 1px 0 rgba(255,255,255,.34);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  transition: box-shadow 220ms ease, background 220ms ease, transform 220ms ease;
}

#header.rose-header-scrolled {
  box-shadow: 0 16px 40px rgba(124, 32, 77, 0.14), inset 0 1px 0 rgba(255,255,255,.36);
  background: linear-gradient(135deg, rgba(255, 221, 237, 0.58), rgba(244, 154, 198, 0.34), rgba(255, 244, 249, 0.24));
}

#header::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
}

#header .header-nav {
  max-height: none;
  margin-bottom: 0;
  color: var(--ink-700);
  border-bottom: 1px solid rgba(255,255,255,.20);
  background: linear-gradient(90deg, rgba(255, 230, 241, 0.28), rgba(255, 248, 251, 0.10), rgba(255, 221, 237, 0.25));
}

#header .header-nav .container {
  min-height: 34px;
}

#header .header-nav a,
#header .header-nav .blockcart,
#header .header-nav .user-info a {
  color: var(--ink-700);
}

#header .header-nav a:hover,
#header .header-nav a:focus,
#header .header-nav .blockcart:hover {
  color: var(--rose-700);
}

#header .header-top {
  padding: 0.22rem 0;
  background: transparent;
}

#header .header-top > .container > .row {
  align-items: center;
}

#header .logo {
  margin: 0;
}

#header .header-top .row,
#header .header-top .position-static,
#header .header-top .menu,
#header .header-top .top-menu {
  align-items: center;
}

#header #_desktop_logo,
#header #_desktop_logo img {
  margin-top: 0;
  margin-bottom: 0;
}

/* Logo size is intentionally inherited from the original theme. */
#header #_desktop_logo,
#header #_mobile_logo,
#header .top-logo {
  position: relative;
  z-index: 2;
}

#header .header-top a[data-depth="0"],
#header .top-menu a[data-depth="0"] {
  position: relative;
  padding: 0.48rem 0.68rem;
  color: var(--ink-900);
  font-size: 0.89rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

#header .header-top a[data-depth="0"]::after,
#header .top-menu a[data-depth="0"]::after {
  position: absolute;
  right: 0.78rem;
  bottom: 0.34rem;
  left: 0.78rem;
  height: 3px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(90deg, var(--rose-400), var(--rose-700));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-out);
}

#header .header-top a[data-depth="0"]:hover::after,
#header .header-top a[data-depth="0"]:focus::after,
#header .top-menu a[data-depth="0"]:hover::after,
#header .top-menu a[data-depth="0"]:focus::after {
  transform: scaleX(1);
  transform-origin: left;
}

#header .top-menu .sub-menu {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

#header .top-menu .sub-menu a {
  color: var(--ink-700);
  transition: color 180ms ease, transform 180ms ease;
}

#header .top-menu .sub-menu a:hover {
  color: var(--rose-700);
  transform: translateX(4px);
}

#search_widget form {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-solid);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 10px 30px rgba(93, 28, 63, 0.08);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

#search_widget form:focus-within {
  border-color: var(--rose-400);
  box-shadow: 0 0 0 4px rgba(246, 79, 150, 0.12), var(--shadow-sm);
  transform: translateY(-1px);
}

#search_widget form input {
  min-height: 46px;
  color: var(--ink-900);
  background: transparent;
}

#search_widget form i {
  color: var(--rose-600);
}

#header .blockcart {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-50), #fff);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease-spring), box-shadow 220ms ease;
}

#header .blockcart:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

#header .blockcart.active {
  background: linear-gradient(135deg, var(--rose-600), var(--rose-800));
}

/* Home marquee */
.rose-marquee {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: -1.75rem 0 2rem -50vw;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.28);
  color: #fff;
  background: linear-gradient(110deg, var(--rose-800), var(--rose-600) 52%, var(--rose-500));
  box-shadow: 0 14px 35px rgba(185, 31, 100, 0.18);
  transform: rotate(-0.35deg);
}

.rose-marquee::before,
.rose-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 8vw;
  min-width: 42px;
  content: "";
  pointer-events: none;
}

.rose-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--rose-800), transparent);
}

.rose-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--rose-500), transparent);
}

.rose-marquee__track {
  display: flex;
  width: max-content;
  padding: 0.82rem 0;
  animation: rose-marquee-scroll 28s linear infinite;
  will-change: transform;
}

.rose-marquee:hover .rose-marquee__track {
  animation-play-state: paused;
}

.rose-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.rose-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.35rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rose-marquee__item::after {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: rgba(255,255,255,.76);
  box-shadow: 0 0 0 5px rgba(255,255,255,.1);
}

@keyframes rose-marquee-scroll {
  to { transform: translateX(-50%); }
}

/* Carousel: same markup and controls, modern presentation */
#carousel.carousel {
  position: relative;
  left: auto;
  width: 100%;
  margin: 0 0 3rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: clamp(20px, 4vw, 34px);
  background: linear-gradient(135deg, rgba(244,178,209,0.96), rgba(181,52,112,0.96));
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

#carousel .carousel-inner {
  height: auto;
  border-radius: inherit;
}

#carousel .carousel-item,
#carousel .carousel-item a,
#carousel .carousel-item figure {
  height: clamp(300px, 36vw, 420px);
  border-radius: inherit;
}

#carousel .carousel-item figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: linear-gradient(135deg, rgba(244,178,209,0.96), rgba(181,52,112,0.96));
}

#carousel .carousel-item figure::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(84, 22, 52, .08), rgba(84, 22, 52, .03));
}

#carousel .carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0.2rem;
  transform: scale(0.98);
  transition: transform 9s linear, filter 700ms ease;
  filter: saturate(1.04) contrast(1.02) drop-shadow(0 14px 30px rgba(61, 21, 41, .12));
}

#carousel .carousel-item.active img {
  transform: scale(1.02);
}


#carousel .carousel-item .caption {
  z-index: 3;
  top: auto;
  right: auto;
  bottom: clamp(1rem, 3vw, 2rem);
  left: clamp(1.25rem, 4.5vw, 3rem);
  width: min(520px, 78%);
  padding: 0;
  color: #fff;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
}

#carousel .carousel-item .caption .display-1 {
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: clamp(1.75rem, 4.4vw, 3.65rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: none !important;
  text-shadow: 0 10px 35px rgba(43,19,35,.38);
}

#carousel .caption-description,
#carousel .caption-description p,
#carousel .caption-description h3 {
  color: rgba(255,255,255,.9);
}

#carousel .caption-description p:last-child {
  margin-bottom: 0;
}

.page-home #carousel .carousel-control {
  top: 50%;
  bottom: auto;
  width: 36px;
  height: 36px;
  margin: 0 0.9rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  backdrop-filter: none;
  transform: translateY(-50%);
  transition: transform 220ms var(--ease-spring), opacity 220ms ease;
}

.page-home #carousel .carousel-control:hover {
  background: transparent;
  transform: translateY(-50%) scale(1.08);
}

.page-home #carousel .carousel-control .icon-next,
.page-home #carousel .carousel-control .icon-prev {
  top: 50%;
  width: auto;
  height: auto;
  margin: 0;
  transform: translateY(-50%);
}

.page-home #carousel .carousel-control .icon-next i,
.page-home #carousel .carousel-control .icon-prev i {
  color: #fff;
  font-size: 2rem;
  background: transparent;
  text-shadow: 0 4px 18px rgba(43,19,35,.25);
}

#carousel .carousel-indicators {
  z-index: 5;
  bottom: 1.15rem;
  gap: 0.45rem;
  margin: 0;
}

#carousel .carousel-indicators li,
#carousel .carousel-indicators .active {
  width: 9px;
  height: 9px;
  margin: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.52);
  transition: width 280ms var(--ease-out), background 280ms ease;
}

#carousel .carousel-indicators .active {
  width: 34px;
  background: #fff;
}

.rose-carousel-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  height: 4px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}

.rose-carousel-progress__bar {
  width: 0;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #fff, var(--rose-200));
}

.rose-carousel-progress.is-running .rose-carousel-progress__bar {
  width: 100%;
  transition-property: width;
  transition-timing-function: linear;
}

/* Product grids and cards */
#products .products,
.featured-products .products,
.product-accessories .products,
.products.row {
  align-items: stretch;
  row-gap: 1.6rem;
}

.product {
  perspective: 900px;
}

.product-miniature {
  height: 100%;
}

.product-miniature .thumbnail-container {
  position: relative;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow-sm);
  transform: translateZ(0);
  transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out), border-color 260ms ease;
}

.product-miniature .thumbnail-container::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 30%), rgba(255,255,255,.72), transparent 30%);
  transition: opacity 250ms ease;
}

.product-miniature:hover .thumbnail-container {
  z-index: 3;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-10px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.product-miniature:hover .thumbnail-container::before {
  opacity: 0.44;
}

.product-miniature .thumbnail-top {
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 1px) calc(var(--radius-md) - 1px) 0 0;
  background: linear-gradient(145deg, var(--rose-50), #fff);
}

.product-miniature .product-thumbnail img {
  transition: transform 620ms var(--ease-out), filter 320ms ease;
}

.product-miniature:hover .product-thumbnail img {
  transform: scale(1.075);
  filter: saturate(1.06);
}

.product-miniature .product-description {
  position: relative;
  width: 100%;
  padding: 1.15rem 1.15rem 1.25rem;
  background: transparent;
}

.product-miniature .product-title {
  min-height: 2.6em;
  margin-bottom: 0.65rem;
  text-align: left;
}

.product-miniature .product-title a {
  color: var(--ink-900);
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-miniature .product-price-and-shipping {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-900);
  text-align: left;
}

.product-miniature .price,
.product-price,
.current-price-value {
  color: var(--rose-700);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.product-miniature .regular-price {
  color: var(--ink-500);
}

.product-miniature .discount-percentage,
.product-miniature .discount-amount,
.product-flags li.product-flag.discount,
.product-flags li.product-flag.on-sale,
.product-flags li.product-flag.new {
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-800));
  box-shadow: 0 8px 22px rgba(185,31,100,.22);
}

.product-flags li.product-flag {
  margin: 0.65rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.product-miniature .highlighted-informations {
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.7rem;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  transform: translateY(115%);
  transition: transform 320ms var(--ease-out), opacity 250ms ease;
}

.product-miniature:hover .highlighted-informations {
  transform: translateY(0);
}

.product-miniature .quick-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: var(--rose-700);
  font-weight: 700;
}

.product-miniature .quick-view:hover {
  color: var(--rose-600);
}

/* Buttons and controls */
.btn,
button,
input[type="submit"],
.add-to-cart,
.checkout a,
.cart-summary .btn-primary {
  border-radius: 999px;
}

.btn-primary,
.btn-primary:active,
.btn-primary:focus,
.add-to-cart,
.cart-summary .btn-primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700) 60%, var(--rose-800));
  box-shadow: 0 12px 28px rgba(185, 31, 100, 0.25);
  transition: transform 220ms var(--ease-spring), box-shadow 220ms ease, filter 220ms ease;
}

.btn-primary:hover,
.add-to-cart:hover,
.cart-summary .btn-primary:hover {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-400), var(--rose-600) 60%, var(--rose-800));
  box-shadow: 0 17px 36px rgba(185, 31, 100, 0.31);
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.btn-secondary,
.btn-tertiary {
  border: 1px solid var(--line-strong);
  color: var(--rose-700);
  background: var(--rose-50);
}

.btn-secondary:hover,
.btn-tertiary:hover {
  border-color: var(--rose-300);
  color: var(--rose-800);
  background: var(--rose-100);
}

.form-control,
.input-group .form-control,
.custom-select,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"] {
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--ink-900);
  background-color: rgba(255,255,255,.94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.form-control:focus,
.custom-select:focus,
select:focus,
textarea:focus,
input:focus {
  border-color: var(--rose-400);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(246,79,150,.12);
}

.custom-checkbox input[type="checkbox"] + span,
.custom-radio {
  border-color: var(--line-strong);
}

.custom-checkbox input[type="checkbox"]:checked + span,
.custom-radio input[type="radio"]:checked + span {
  border-color: var(--rose-600);
  background: var(--rose-600);
}

/* Breadcrumb */
#wrapper .breadcrumb {
  padding: 0.7rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 24px rgba(93,28,63,.05);
  backdrop-filter: blur(12px);
}

#wrapper .breadcrumb li a,
#wrapper .breadcrumb li::after {
  color: var(--ink-500);
}

#wrapper .breadcrumb li:last-child a {
  color: var(--rose-700);
  font-weight: 700;
}

/* Category, filters, listing */
#left-column .block,
#right-column .block,
#search_filters,
.block-categories {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

#search_filters .facet,
.block-categories .category-sub-menu li {
  border-color: var(--line);
}

#search_filters .facet .facet-title,
.block-categories .h6 {
  color: var(--ink-900);
}

#search_filters .facet .facet-label a,
.block-categories a {
  color: var(--ink-700);
}

#search_filters .facet .facet-label a:hover,
.block-categories a:hover {
  color: var(--rose-700);
}

.products-selection {
  padding: 1rem;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.products-sort-order .select-title {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

.pagination .page-list {
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.pagination .current a,
.pagination a:hover {
  color: var(--rose-700);
}

/* Product page */
.product-cover img,
#product-modal .modal-content,
.product-images > li.thumb-container > .thumb {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.product-cover img {
  background: #fff;
  transition: transform 500ms var(--ease-out), box-shadow 500ms ease;
}

.product-cover:hover img {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-images > li.thumb-container > .thumb.selected,
.product-images > li.thumb-container > .thumb:hover {
  border-color: var(--rose-500);
}

.product-information,
.product-actions {
  color: var(--ink-700);
}

.product-actions {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.product-variants > .product-variants-item select,
.product-quantity #quantity_wanted {
  border-radius: 12px;
}

.tabs {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.tabs .nav-tabs {
  border-color: var(--line);
}

.tabs .nav-tabs .nav-link.active,
.tabs .nav-tabs .nav-link:hover {
  color: var(--rose-700);
  border-color: transparent transparent var(--rose-600);
}

/* Cart, checkout, account */
.cart-grid-body .card,
.cart-grid-right .card,
.checkout-step,
#order-items,
.definition-list dl,
#blockcart-modal .modal-content,
.quickview .modal-content {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-md);
}

body#checkout section.checkout-step.-current .step-title {
  color: var(--rose-700);
}

body#checkout section.checkout-step .step-number {
  border-color: var(--rose-500);
  color: var(--rose-700);
}

body#checkout section.checkout-step.-complete .step-title .step-edit {
  color: var(--rose-700);
}

#blockcart-modal .modal-header {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--rose-50), #fff);
}

#blockcart-modal .modal-header .material-icons {
  color: var(--rose-600);
}

/* Banners, custom text, reassurance */
.banner,
#custom-text,
.blockreassurance_product,
#block-reassurance,
.block_newsletter,
.block-social {
  border-radius: var(--radius-md);
}

.banner img,
#custom-text,
.blockreassurance_product,
#block-reassurance {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.banner img {
  width: 100%;
  transition: transform 500ms var(--ease-out), box-shadow 500ms ease;
}

.banner a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.banner a:hover img {
  transform: scale(1.025);
  box-shadow: var(--shadow-md);
}

#custom-text {
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at top right, rgba(255,172,207,.22), transparent 44%),
    rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
}

#custom-text h2 {
  color: var(--ink-900);
}

#block-reassurance li,
.blockreassurance_product .item-product {
  transition: transform 220ms var(--ease-spring), background 220ms ease;
}

#block-reassurance li:hover {
  background: var(--rose-50);
  transform: translateY(-3px);
}

/* Footer */
#footer {
  position: relative;
  margin-top: 4rem;
  color: rgba(61, 33, 49, .84);
  background:
    radial-gradient(circle at 18% 0%, rgba(246,79,150,.20), transparent 30rem),
    linear-gradient(180deg, rgba(255,240,247,.96), rgba(255,232,242,.98) 50%, rgba(248,215,229,.98));
}

#footer::before {
  position: absolute;
  top: -42px;
  right: 0;
  left: 0;
  height: 43px;
  content: "";
  pointer-events: none;
  background: radial-gradient(70% 43px at 50% 43px, transparent 98%, rgba(255,240,247,.96) 100%);
}

#footer .container:first-child {
  padding-top: 1.5rem;
}

#footer .footer-container {
  padding-top: 2.5rem;
  margin-top: 0;
  background: transparent;
  box-shadow: none;
}

#footer .footer-container,
#footer .footer-container a,
#footer .footer-container li a,
#footer .block-contact,
#footer .block-contact a {
  color: rgba(61, 33, 49, .84);
}

#footer .footer-container a:hover,
#footer .footer-container li a:hover,
#footer .block-contact a:hover {
  color: var(--ink-900);
}

#footer .h3,
#footer .h4,
#footer .block-contact-title,
#footer .links .h3 {
  color: var(--ink-900);
}

#footer .block_newsletter {
  padding: 1.5rem;
  border: 1px solid rgba(185, 31, 100, .10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 45px rgba(93, 28, 63, .08);
  backdrop-filter: blur(16px);
}

#footer .block_newsletter form input[type="email"] {
  border: 1px solid rgba(185, 31, 100, .14);
  color: var(--ink-900);
  background: rgba(255,255,255,.96);
}

#footer #block-newsletter-label,
#footer .block_newsletter p,
#footer .block_newsletter .col-xs-12,
#footer .block_newsletter .conditions,
#footer .block_newsletter small {
  color: var(--ink-900);
}

#footer #block-newsletter-label {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
}

#footer .block-social ul li {
  border-radius: 50%;
  background-color: rgba(246,79,150,.12);
  transition: transform 220ms var(--ease-spring), background-color 220ms ease;
}

#footer .block-social ul li:hover {
  background-color: var(--rose-600);
  transform: translateY(-4px) scale(1.05);
}

.rose-footer-social {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}

.rose-footer-social iframe {
  max-width: 100%;
  border: 1px solid rgba(185,31,100,.14) !important;
  border-radius: 16px !important;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
}

#footer .copyright-row {
  padding: 1.25rem 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(185,31,100,.12);
}

#footer .copyright-row p,
#footer .copyright-row a {
  margin-bottom: 0;
  color: rgba(61, 33, 49, .74);
}

/* JS reveal animations, enabled only after JS initializes */
.rose-js .js-rose-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--rose-delay, 0ms);
}

.rose-js .js-rose-reveal.is-rose-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive refinements */
@media (min-width: 992px) {
  #header {
    position: sticky;
    top: 0;
  }

  .page-home .featured-products,
  .page-home #custom-text,
  .page-home .banner,
  .page-home .product-accessories {
    margin-bottom: 4rem;
  }
}

@media (max-width: 991px) {
  #header .header-top {
    padding: 0;
  }

  #header .header-nav .mobile {
    min-height: 50px;
  }

  #mobile_top_menu_wrapper {
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,.22);
    background: linear-gradient(180deg, rgba(255,231,241,.86), rgba(255,246,250,.78));
    backdrop-filter: blur(20px) saturate(170%);
    -webkit-backdrop-filter: blur(20px) saturate(170%);
    box-shadow: var(--shadow-md);
  }

  #mobile_top_menu_wrapper .top-menu .sub-menu {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  #carousel.carousel {
    left: auto;
    width: 100%;
    padding-bottom: 0;
    margin-left: 0;
    background: linear-gradient(135deg, rgba(244,178,209,0.96), rgba(181,52,112,0.96));
  }

  #carousel .carousel-item .caption {
    position: absolute;
    top: auto;
    right: 1rem;
    bottom: 1.25rem;
    left: 1rem;
    width: auto;
    margin: 0;
    padding: 0;
    text-align: left;
    transform: none;
  }

  #carousel .carousel-item .caption .display-1 {
    color: #fff;
    font-size: clamp(1.35rem, 6vw, 2.2rem);
  }

  #carousel .carousel-item,
  #carousel .carousel-item a,
  #carousel .carousel-item figure {
    height: clamp(280px, 62vw, 360px);
  }

  #carousel .carousel-item img {
    height: 100%;
    min-height: 100%;
  }


  .product-miniature .thumbnail-container {
    min-height: 375px;
  }

  .product-miniature .highlighted-informations {
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  :root {
    --radius-md: 17px;
    --radius-lg: 24px;
  }

  #wrapper {
    padding-top: 1rem;
  }

  .container {
    width: min(100% - 20px, 1140px);
    padding-right: 10px;
    padding-left: 10px;
  }

  .rose-marquee {
    margin-top: -1rem;
    margin-bottom: 1.3rem;
  }

  .rose-marquee__track {
    padding: 0.68rem 0;
  }

  .rose-marquee__item {
    padding: 0 0.9rem;
    font-size: 0.7rem;
  }

  #carousel.carousel {
    margin-bottom: 2rem;
    border-radius: 20px;
  }

  #carousel .carousel-item,
  #carousel .carousel-item a,
  #carousel .carousel-item figure {
    height: clamp(240px, 72vw, 320px);
  }

  #carousel .carousel-item img {
    height: 100%;
    min-height: 100%;
  }

  #carousel .caption-description {
    display: block;
    font-size: 0.85rem;
  }

  #carousel .direction {
    top: 46%;
  }

  .page-header h1,
  .products-section-title,
  .featured-products > h2 {
    font-size: 1.55rem;
  }

  .product-miniature:hover .thumbnail-container {
    transform: translateY(-5px);
  }

  #footer {
    margin-top: 3rem;
  }

  #footer .links .title {
    border-color: rgba(185,31,100,.12);
  }

  #footer .links ul {
    background: rgba(255,255,255,.42);
  }

  #footer .links ul > li {
    border-color: rgba(185,31,100,.10);
  }
}

@media (max-width: 420px) {
  #carousel .carousel-item,
  #carousel .carousel-item a,
  #carousel .carousel-item figure {
    height: 220px;
  }

  #carousel .carousel-item img {
    height: 100%;
    min-height: 100%;
  }

  #carousel .carousel-item .caption {
    right: 0.75rem;
    bottom: 1.8rem;
    left: 0.75rem;
  }

  #carousel .caption-description {
    display: none;
  }
}

@media (max-width: 767px) {
  #header #_mobile_logo img,
  #header .mobile #_mobile_logo img,
  #_mobile_logo img {
    max-height: 76px;
    width: auto;
  }

  #header .header-top > .container > .row {
    min-height: 70px;
  }
}

/* Respect operating-system motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body::before,
  body::after {
    display: none;
  }

  .rose-marquee__track {
    transform: none !important;
  }

  .rose-js .js-rose-reveal {
    opacity: 1;
    transform: none;
  }
}



.page-home #carousel .carousel-control {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.page-home #carousel .left.carousel-control { left: 0.7rem; }
.page-home #carousel .right.carousel-control { right: 0.7rem; }

@media (max-width: 991px) {
  .page-home #carousel .carousel-control {
    width: 32px;
    height: 32px;
    margin: 0 0.5rem;
  }
}

@media (max-width: 767px) {
  .page-home #carousel .carousel-control {
    width: 28px;
    height: 28px;
    margin: 0 0.35rem;
  }

  .page-home #carousel .carousel-control .icon-next i,
  .page-home #carousel .carousel-control .icon-prev i {
    font-size: 1.6rem;
  }
}

/* --------------------------------------------------------------------------
   Mami Chou V6 — navigation desktop centrée, taille du logo héritée d'origine
   Le logo reste exactement géré comme dans rosemodernwaveglassnav 1.2.2.
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  #header {
    overflow: visible;
    isolation: isolate;
  }

  #header::before {
    z-index: 0;
  }

  #header::after {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 0;
    height: 22px;
    content: "";
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(247, 188, 218, 0.20) 0%,
      rgba(255, 232, 243, 0.10) 48%,
      rgba(255, 255, 255, 0) 100%
    );
    -webkit-backdrop-filter: blur(14px) saturate(155%);
    backdrop-filter: blur(14px) saturate(155%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.56) 52%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.56) 52%, transparent 100%);
  }

  #header > * {
    position: relative;
    z-index: 1;
  }

  #header .header-top > .container > .row {
    position: relative;
    display: flex;
    align-items: center;
  }

  /* Le bloc logo reste dans le flux avec sa largeur Bootstrap d'origine. */
  #header #_desktop_logo {
    position: relative;
    z-index: 5;
    float: none;
  }

  #header #_desktop_logo h1 {
    margin: 0;
  }

  /* Aucun width/height/max-width/max-height ajouté au logo desktop. */
  #header #_desktop_logo img {
    display: block;
  }

  #header .header-top-right {
    position: static !important;
    float: none;
  }

  #header #_desktop_top_menu {
    position: absolute !important;
    top: 50%;
    left: 50%;
    z-index: 4;
    float: none;
    width: max-content;
    max-width: calc(100% - 560px);
    margin: 0;
    transform: translate(-50%, -50%);
  }

  #header #_desktop_top_menu > .top-menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    white-space: nowrap;
  }

  #header #_desktop_top_menu > .top-menu > li {
    float: none;
    flex: 0 0 auto;
  }

  #header .header-top #search_widget {
    position: absolute;
    top: 50%;
    right: 15px;
    z-index: 5;
    float: none;
    width: clamp(210px, 20vw, 290px);
    min-width: 0;
    max-width: 290px;
    margin: 0;
    transform: translateY(-50%);
  }

  #header .header-top #search_widget form,
  #header .header-top #search_widget input[type="text"],
  #header .header-top #search_widget input[type="search"] {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #header .header-top #search_widget {
    width: 205px;
  }

  #header #_desktop_top_menu {
    max-width: calc(100% - 440px);
  }

  #header .header-top a[data-depth="0"],
  #header .top-menu a[data-depth="0"] {
    padding-right: 0.42rem;
    padding-left: 0.42rem;
    font-size: 0.80rem;
  }
}
