:root {
  --df-font-sans: "Tik tok sans", "TikTok Sans", "Tik Tok Sans", sans-serif;
  --df-ink: #24211f;
  --df-muted: #6f6862;
  --df-line: #e7e0d9;
  --df-paper: #ffffff;
  --df-soft: #f7f4f0;
  --df-accent: #b46d3a;
  --df-accent-dark: #85502b;
  --df-forest: #3f5f52;
}

html,
body {
  font-family: var(--df-font-sans);
  color: var(--df-ink);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.header-bottom__logo img {
  max-width: 242px;   /* change to whatever size you want */
  max-height: 96px;
  width: auto;
  height: auto;
}

.ps-mainmenu__tree-item {
  position: relative;
}

.ps-mainmenu__tree-link {
  font-weight: 700;
}

.df-menu-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 1050;
  display: grid;
  grid-template-columns: repeat(4, minmax(128px, 1fr));
  gap: 16px;
  width: min(720px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid var(--df-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 48px rgb(36 33 31 / 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.df-menu-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
}

.ps-mainmenu__tree-item:hover .df-menu-dropdown,
.ps-mainmenu__tree-item:focus-within .df-menu-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.df-menu-dropdown__item {
  display: block;
  min-width: 0;
  color: var(--df-ink);
  text-align: center;
  text-decoration: none;
}

.df-menu-dropdown__item:hover {
  color: var(--df-accent-dark);
}

.df-menu-dropdown__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--df-soft);
}

.df-menu-dropdown__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.df-menu-dropdown__item:hover img {
  transform: scale(1.05);
}

.df-menu-dropdown__media--fallback {
  background: linear-gradient(135deg, #f4ece4, #e9ddd2);
  color: var(--df-accent-dark);
}

.df-menu-dropdown__media--fallback .material-icons {
  font-size: 2rem;
}

.df-menu-dropdown__label {
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.ps-mainmenu--mobile {
  --bs-offcanvas-width: min(390px, 100vw);
}

.ps-mainmenu--mobile .offcanvas-header {
  padding: 18px 20px 10px;
}

.ps-mainmenu--mobile .ps-mainmenu__mobile {
  padding: 0 18px 18px;
}

.ps-mainmenu--mobile .menu__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.ps-mainmenu--mobile .menu__list > li {
  list-style: none;
}

.ps-mainmenu--mobile .menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 4px;
  color: var(--df-ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.df-mobile-products {
  padding-bottom: 4px;
}

.df-mobile-products__heading {
  border-bottom: 1px solid var(--df-line);
}

.df-mobile-products__heading .material-icons {
  color: var(--df-accent-dark);
  font-size: 1.25rem;
}

.df-mobile-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 14px;
}

.df-mobile-products__card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--df-line);
  border-radius: 8px;
  background: #fff;
  color: var(--df-ink);
  text-decoration: none;
  box-shadow: 0 10px 22px rgb(36 33 31 / 0.06);
}

.df-mobile-products__media {
  display: block;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: var(--df-soft);
}

.df-mobile-products__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.df-mobile-products__label {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 10px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.df-mobile-gallery__card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 82px;
  border: 1px solid var(--df-line);
  border-radius: 8px;
  background: #fff;
  color: var(--df-ink);
  text-decoration: none;
  box-shadow: 0 10px 22px rgb(36 33 31 / 0.06);
}

.df-mobile-gallery__media {
  display: block;
  overflow: hidden;
  background: var(--df-soft);
}

.df-mobile-gallery__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.df-mobile-gallery__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 14px;
}

.df-mobile-gallery__title {
  font-size: 1rem;
  font-weight: 800;
}

.df-mobile-gallery__body .material-icons {
  color: var(--df-accent-dark);
  font-size: 1.25rem;
}

.ps-mainmenu--mobile .ps-mainmenu__additionnals {
  align-items: flex-start !important;
  padding: 14px 22px 22px;
  border-top: 1px solid var(--df-line);
  background: var(--df-soft);
}

.ps-mainmenu--mobile #_mobile_ps_contactinfo,
.ps-mainmenu--mobile .dimane-topbar,
.ps-mainmenu--mobile .dimane-topbar__address,
.ps-mainmenu--mobile .dimane-topbar__phones {
  width: 100%;
}

.ps-mainmenu--mobile .dimane-topbar {
  display: grid;
  gap: 8px;
  padding: 0;
}

.ps-mainmenu--mobile .dimane-topbar__phones {
  display: grid;
  gap: 8px;
}

.df-cart {
  --df-cart-border: #ddd5cd;
  --df-cart-bg: #fff;
  --df-cart-bg-hover: #f8f3ee;
  --df-cart-shadow: 0 10px 24px rgb(36 33 31 / 0.08);
}

.df-cart .df-cart__button,
#_mobile_ps_shoppingcart .header-block__action-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--df-cart-border, #ddd5cd);
  background: var(--df-cart-bg, #fff);
  color: var(--df-ink);
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.df-cart .df-cart__button {
  gap: 12px;
  min-width: 196px;
  padding: 5px 6px 5px 10px;
  border-radius: 8px;
}

.df-cart.header-block--active .df-cart__button {
  border-color: color-mix(in srgb, var(--df-accent) 45%, var(--df-cart-border));
}

.df-cart .df-cart__button:hover,
.df-cart .df-cart__button:focus-visible,
#_mobile_ps_shoppingcart .header-block__action-btn:hover,
#_mobile_ps_shoppingcart .header-block__action-btn:focus-visible {
  border-color: var(--df-accent);
  background: var(--df-cart-bg-hover);
  box-shadow: var(--df-cart-shadow);
  color: var(--df-accent-dark);
  transform: translateY(-1px);
}

.df-cart__main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.df-cart__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f0e7de;
  color: var(--df-accent-dark);
}

.df-cart__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.df-cart__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  line-height: 1.1;
}

.df-cart__title {
  display: block;
  color: var(--df-ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.df-cart__meta {
  display: block;
  margin-top: 3px;
  color: var(--df-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.df-cart__total {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 7px;
  background: var(--df-ink);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.df-cart.inactive .df-cart__total {
  background: #efe8e1;
  color: var(--df-muted);
}

.df-cart__badge,
#_mobile_ps_shoppingcart .header-block__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--df-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.df-cart__badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 0.7rem;
}

.df-cart.inactive .df-cart__badge,
#_mobile_ps_shoppingcart .header-block__badge:empty {
  background: #b8aea5;
}

#_mobile_ps_shoppingcart .header-block__action-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 8px;
}

#_mobile_ps_shoppingcart .header-block__badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
}

.dimanefurniture-home-page {
  background: var(--df-paper);
}

.footer__main {
  background: var(--df-ink) !important;
}

.ps-contactinfo__map {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.9;
}

.ps-contactinfo__map iframe {
  display: block;
  border-radius: 10px;
}

/* Remove the default page bottom padding on the homepage so the dark
   help-strip sits flush against the footer with no white gap. */
#index .center-column.page {
  padding-bottom: 0;
}

.dimanehome {
  color: var(--df-ink);
  overflow-x: hidden;
}

.dimanehome *,
.dimanehome *::before,
.dimanehome *::after {
  box-sizing: border-box;
}

.dimanehome a {
  color: inherit;
}

.dimanehome__container {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

.dimanehome__section {
  padding: 44px 0;
}

.dimanehome__eyebrow {
  margin: 0 0 10px;
  color: var(--df-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dimanehome__title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
}

.dimanehome__intro {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--df-muted);
  line-height: 1.7;
}

.dimanehome__section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.dimanehome__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--df-line);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.dimanehome__link:hover {
  border-color: var(--df-accent);
  color: var(--df-accent-dark);
}

.dimanehome-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  width: 100%;
  max-width: 100%;
  min-height: 620px;
  border-bottom: 1px solid var(--df-line);
  background: var(--df-soft);
}

.dimanehome-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 72px max(32px, calc((100vw - 1400px) / 2)) 72px 48px;
}

.dimanehome-hero__title {
  width: 100%;
  max-width: 680px;
  margin: 0;
  font-size: 3.6rem;
  line-height: 1.02;
}

.dimanehome-hero__text {
  width: 100%;
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--df-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.dimanehome-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.dimanehome .dimanehome-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--df-ink);
  border-radius: 10px;
  background: var(--df-ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.dimanehome .dimanehome-button:hover {
  background: var(--df-accent);
  border-color: var(--df-accent);
  color: #fff;
}

.dimanehome .dimanehome-button--ghost {
  background: transparent;
  color: var(--df-ink);
}

.dimanehome .dimanehome-button--ghost:hover {
  background: var(--df-ink);
  border-color: var(--df-ink);
  color: #fff;
}

.dimanehome-hero__media {
  min-height: 620px;
  background-color: #d8d0c6;
  background-position: center;
  background-size: cover;
}

.dimanehome-promo-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  padding-top: 18px;
}

.dimanehome-promo {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: 8px;
  background: #d9d0c4 center / cover;
  text-decoration: none;
}

.dimanehome-promo:first-child {
  min-height: 420px;
}

.dimanehome-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.52), rgb(0 0 0 / 0.12));
}

.dimanehome-promo__body {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 390px;
  padding: 30px;
  color: #fff;
}

.dimanehome-promo__label {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dimanehome-promo__title {
  display: block;
  margin: 0 0 14px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.dimanehome-promo__cta {
  display: block;
  font-weight: 700;
}

.dimanehome-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dimanehome-category {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--df-line);
  border-radius: 8px;
  background: var(--df-soft);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.dimanehome-category:hover {
  border-color: var(--df-accent);
  box-shadow: 0 14px 32px rgb(36 33 31 / 0.08);
}

.dimanehome-category__media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
}

.dimanehome-category__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.dimanehome-category:hover .dimanehome-category__media img {
  transform: scale(1.06);
}

.dimanehome-category__content {
  padding: 16px 18px;
  background: #fff;
  flex-grow: 1;
}

.dimanehome-category__name {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 700;
}

.dimanehome-category__count {
  display: block;
  margin-top: 6px;
  color: var(--df-muted);
  font-size: 0.875rem;
}

.dimanehome-interior {
  overflow: hidden;
  background: #f3efe9;
}

.dimanehome-interior__head {
  max-width: 1040px;
  margin-bottom: 30px;
}

.dimanehome-interior__title {
  max-width: 860px;
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.08;
}

.dimanehome-interior__title em {
  color: var(--df-accent-dark);
  font-family: var(--df-font-sans);
  font-style: italic;
  font-weight: 400;
}

.dimanehome-interior__lead,
.dimanehome-interior__copy {
  color: var(--df-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.dimanehome-interior__lead {
  max-width: 1040px;
  margin: 18px 0 0;
}

.dimanehome-interior__zigzag {
  display: grid;
  gap: 34px;
}

.dimanehome-interior__row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.dimanehome-interior__row--reverse {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.55fr);
}

.dimanehome-interior__row--reverse .dimanehome-interior__media {
  order: 2;
}

.dimanehome-interior__row--reverse .dimanehome-interior__copy {
  order: 1;
}

.dimanehome-interior__media {
  overflow: hidden;
  min-height: 390px;
  border-radius: 8px;
  background-color: #ded6cd;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 24px 54px rgb(36 33 31 / 0.12);
}

.dimanehome-interior__media--one {
  background-image: linear-gradient(rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.1)),
    url('/modules/dimanehome/views/img/480687536_598716776367233_2440327399901425395_n.jpg');
}

.dimanehome-interior__media--two {
  background-image: linear-gradient(rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.1)),
    url('/modules/dimanehome/views/img/481934548_122181064088098254_8048100388526231547_n.jpg');
}

.dimanehome-interior__media--three {
  background-image: linear-gradient(rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.1)),
    url('/modules/dimanehome/views/img/639235384_122227185458098254_8101524170063112636_n.jpg');
}

.dimanehome-interior__media--one {
  background-position: right center;
  background-size: auto 118%;
}

.dimanehome-interior__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
}

.dimanehome-interior__copy {
  padding: 24px 0;
  color: var(--df-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.dimanehome-interior__copy h3 {
  max-width: 420px;
  margin: 8px 0 12px;
  color: var(--df-ink);
  font-size: 1.55rem;
  line-height: 1.2;
}

.dimanehome-interior__copy p {
  max-width: 520px;
  margin: 0;
}

.dimanehome-interior__tag {
  display: inline-flex;
  color: var(--df-accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dimanehome-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dimanehome-product {
  border: 1px solid var(--df-line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.dimanehome-product__image {
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--df-soft);
}

.dimanehome-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dimanehome-product__body {
  padding: 16px;
}

.dimanehome-product__name {
  min-height: 44px;
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.dimanehome-product__price {
  color: var(--df-accent-dark);
  font-weight: 800;
}

.dimanehome-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dimanehome-brand {
  min-height: 150px;
  padding: 24px;
  border-radius: 8px;
  background: var(--df-ink);
  color: #fff;
}

.dimanehome-brand:nth-child(2) {
  background: var(--df-forest);
}

.dimanehome-brand:nth-child(3) {
  background: var(--df-accent-dark);
}

.dimanehome-brand__name {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.dimanehome-brand__origin {
  margin: 0;
  color: rgb(255 255 255 / 0.78);
}

.dimanehome-strip {
  background: var(--df-ink);
  color: #fff;
}

.dimanehome-strip .dimanehome__container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.dimanehome-strip h2 {
  margin: 0;
  font-size: 1.55rem;
}

.dimanehome-strip p {
  margin: 8px 0 0;
  color: rgb(255 255 255 / 0.75);
}

.dimanehome-strip .dimanehome-button {
  background: #fff;
  border-color: #fff;
  color: var(--df-ink);
}

@media (max-width: 1199px) {
  .dimanehome-hero {
    grid-template-columns: 1fr;
  }

  .dimanehome-hero__content {
    width: 100%;
    max-width: 100vw;
    padding: 56px 28px;
  }

  .dimanehome-hero__title {
    font-size: 2.8rem;
  }

  .dimanehome-hero__media {
    min-height: 420px;
  }

  .dimanehome-product-grid,
  .dimanehome-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dimanehome-interior__row,
  .dimanehome-interior__row--reverse {
    grid-template-columns: 1fr;
  }

  .dimanehome-interior__row--reverse .dimanehome-interior__media,
  .dimanehome-interior__row--reverse .dimanehome-interior__copy {
    order: initial;
  }

  .dimanehome-interior__copy {
    max-width: 760px;
  }
}

@media (min-width: 1200px) {
  .dimanehome-interior__media {
    min-height: 430px;
    background-attachment: fixed;
    background-position: center top 48px;
    background-size: min(92vw, 1380px) auto;
  }

  .dimanehome-interior__copy {
    padding: 34px 0;
  }

  .dimanehome-interior__media--one {
    background-position: left calc(max(16px, calc((100vw - 1400px) / 2)) - 4px) top 48px;
    background-size: auto 920px;
  }
}

@media (max-width: 767px) {
  .dimanehome__container {
    width: min(100% - 22px, 1400px);
  }

  .dimanehome__section {
    padding: 32px 0;
  }

  .dimanehome__section-head,
  .dimanehome-strip .dimanehome__container {
    display: block;
  }

  .dimanehome__link,
  .dimanehome-strip .dimanehome-button {
    margin-top: 16px;
  }

  .dimanehome__title {
    font-size: 1.55rem;
  }

  .dimanehome-hero__title {
    width: 100%;
    max-width: min(334px, calc(100vw - 56px));
    font-size: 2rem;
    overflow-wrap: break-word;
  }

  .dimanehome-hero__text {
    width: 100%;
    max-width: min(320px, calc(100vw - 56px));
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .dimanehome-hero__actions {
    max-width: min(334px, calc(100vw - 56px));
  }

  .dimanehome .dimanehome-button {
    padding-right: 18px;
    padding-left: 18px;
  }

  .dimanehome-hero__media {
    width: 100vw;
    max-width: 100vw;
  }

  .dimanehome-promo-grid,
  .dimanehome-category-grid,
  .dimanehome-product-grid,
  .dimanehome-brand-grid {
    grid-template-columns: 1fr;
  }

  .dimanehome-promo,
  .dimanehome-promo:first-child {
    min-height: 300px;
  }

  .dimanehome-promo__title {
    font-size: 1.45rem;
  }

  .dimanehome-interior__head {
    margin-bottom: 18px;
  }

  .dimanehome-interior__title {
    font-size: 1.8rem;
  }

  .dimanehome-interior__lead {
    display: none;
  }

  .dimanehome-interior__zigzag {
    gap: 20px;
  }

  .dimanehome-interior__row {
    gap: 14px;
  }

  .dimanehome-interior__media {
    height: clamp(280px, 72vw, 360px);
    min-height: 0;
    background-image: none !important;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .dimanehome-interior__media img {
    height: calc(100% + 140px);
    min-height: 0;
    margin-top: -70px;
    object-fit: cover;
    opacity: 1;
    transform: translate3d(0, var(--df-mobile-parallax-y, 0px), 0);
    transition: transform 0.08s linear;
    visibility: visible;
    will-change: transform;
  }

  .dimanehome-interior__copy {
    padding: 2px 0 12px;
  }

  .dimanehome-interior__copy h3 {
    font-size: 1.25rem;
  }

  .dimanehome-interior__media--one {
    background-position: center;
    background-size: cover;
  }
}

/* Hero wave bottom effect */
.ps-imageslider--wave{position:relative;overflow:visible!important}
.ps-imageslider--wave::after{content:"";display:block;position:absolute;bottom:-1px;left:0;width:100%;height:70px;pointer-events:none;z-index:10}

.page-category .breadcrumb__wrapper {
  display: none;
}

.page-category #left-column,
.page-category #right-column {
  display: none;
}

.page-category #center-column {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.dimane-category-header {
  margin-bottom: 34px;
}

.dimane-category-hero {
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
}

.dimane-category-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 70px;
  line-height: 0;
  pointer-events: none;
}

.dimane-category-header__subcategories {
  margin-top: 28px;
}

.page-category .category__additional-description,
.page-category .category__additional-description *,
.page-category .category__description,
.page-category .category__description * {
  color: var(--df-ink, #24211f) !important;
}

.page-category .category__additional-description,
.page-category .category__description {
  line-height: 1.75;
}

/* Steps section */
.dimanehome-steps {
  background-color: var(--df-soft);
  background-image: url('/modules/dimanehome/views/img/marbe-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dimanehome-steps__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.dimanehome-steps__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--df-ink);
  line-height: 1.25;
  margin: 0.5rem 0 0;
}

.dimanehome-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.dimanehome-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--df-line);
  box-shadow: 0 9px 7px rgb(3 5 0 / 1);
}

.dimanehome-step--featured {
  background: #1e3040;
  border-color: #1e3040;
  color: #fff;
}

.dimanehome-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--df-soft);
  margin-bottom: 1.25rem;
}

.dimanehome-step--featured .dimanehome-step__icon {
  background: rgb(255 255 255 / 0.12);
}

.dimanehome-step__icon .material-icons {
  font-size: 1.75rem;
  color: var(--df-accent);
}

.dimanehome-step--featured .dimanehome-step__icon .material-icons {
  color: #fff;
}

.dimanehome-step__title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--df-ink);
}

.dimanehome-step--featured .dimanehome-step__title {
  color: #fff;
}

.dimanehome-step__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--df-muted);
  margin: 0;
}

.dimanehome-step--featured .dimanehome-step__text {
  color: rgb(255 255 255 / 0.8);
}

@media (max-width: 767px) {
  .dimanehome-steps__grid {
    grid-template-columns: 1fr;
  }

  .dimanehome-steps__title {
    font-size: 1.5rem;
  }
}

/* How to order section */
.dimanehome-howto {
  background: #fff;
}

.dimanehome-howto__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--df-ink);
  margin: 0 0 2.5rem;
}

.dimanehome-howto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dimanehome-howto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.06), 0 8px 32px rgb(0 0 0 / 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dimanehome-howto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e3a5f, var(--df-accent));
}

.dimanehome-howto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.1), 0 20px 48px rgb(0 0 0 / 0.1);
}

.dimanehome-howto-card__icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef2f8, #dde4f0);
}

.dimanehome-howto-card__icon .material-icons {
  font-size: 2rem;
  color: var(--df-accent);
}

.dimanehome-howto-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e3a5f;
  margin: 0 0 0.75rem;
}

.dimanehome-howto-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--df-muted);
  margin: 0;
}

@media (max-width: 991px) {
  .dimanehome-howto__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .dimanehome-howto__grid {
    grid-template-columns: 1fr;
  }
}

/* Topbar: address left, phones right */
.dimane-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 6px 0;
  font-size: 0.8125rem;
  color: inherit;
}

.dimane-topbar__address,
.dimane-topbar__phones {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dimane-topbar__icon {
  font-size: 1rem;
  vertical-align: middle;
}

.dimane-topbar__address,
.dimane-topbar__phone {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}

.dimane-topbar__address:hover,
.dimane-topbar__phone:hover {
  text-decoration: underline;
}

.page-product .product__description,
.page-product .product__description *,
.page-product .product__description-short,
.page-product .product__description-short * {
  color: var(--df-ink, #24211f) !important;
}

.page-product .product__description,
.page-product .product__description-short {
  line-height: 1.75;
}
