:root {
  --dtl-blue: #00a8e8;
  --dtl-blue-dark: #0077b6;
  --dtl-pink: #e91e8c;
  --dtl-pink-dark: #c2185b;
  --dtl-mint: #d8f3e5;
  --dtl-mint-dark: #b7e4c7;
  --dtl-sand: #f5ebe0;
  --dtl-ink: #0f172a;
  --dtl-muted: #64748b;
  --dtl-line: #e2e8f0;
  --dtl-white: #ffffff;
  --dtl-container: 1180px;
  --dtl-radius: 18px;
  --dtl-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  --dtl-shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --dtl-font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --dtl-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dtl-focus: 0 0 0 3px rgba(233, 30, 140, 0.18);
}

body.dtl-cepte-home {
  background: #f8fafc;
  font-family: var(--dtl-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.dtl-container {
  width: min(var(--dtl-container), calc(100% - 32px));
  margin: 0 auto;
}

.dtl-site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.25s var(--dtl-ease), background 0.25s var(--dtl-ease);
}

.dtl-site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.dtl-topbar {
  background: linear-gradient(90deg, #0077b6 0%, #00a8e8 55%, #0096c7 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.dtl-topbar__inner {
  padding: 8px 16px;
}

.dtl-header-main__inner {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
}

.dtl-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dtl-ink);
  font-weight: 800;
  flex-shrink: 0;
}

.dtl-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #003049, #0077b6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.dtl-search {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid var(--dtl-line);
  border-radius: 999px;
  overflow: hidden;
  padding: 4px 6px 4px 18px;
}

.dtl-search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 14px;
  min-width: 0;
}

.dtl-search button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.dtl-search button:hover {
  color: #334155;
}

.dtl-header-actions {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}

.dtl-header-action {
  text-decoration: none;
  color: var(--dtl-ink);
  font-size: 12px;
  line-height: 1.3;
}

.dtl-header-action__copy small {
  display: block;
  color: var(--dtl-muted);
}

.dtl-header-action__icon {
  flex-shrink: 0;
  line-height: 1;
}

.dtl-header-main__row {
  display: contents;
}

.dtl-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--dtl-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.dtl-nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.dtl-site-header.is-nav-open .dtl-nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.dtl-site-header.is-nav-open .dtl-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.dtl-site-header.is-nav-open .dtl-nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dtl-nav {
  border-top: 1px solid var(--dtl-line);
  background: #fff;
}

.dtl-nav .dtl-nav__list,
.dtl-nav .dtl-nav__list ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.dtl-nav__list {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 28px;
}

.dtl-nav__list > li {
  position: relative;
}

.dtl-nav__list > li > a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: var(--dtl-ink);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s var(--dtl-ease);
}

.dtl-nav__list > li > a::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 8px;
  width: calc(100% - 36px);
  height: 2px;
  border-radius: 999px;
  background: var(--dtl-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--dtl-ease);
}

.dtl-nav__list > li > a:hover::after,
.dtl-nav__list > li.current-menu-item > a::after,
.dtl-nav__list > li.current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.dtl-nav__list > li > a:hover,
.dtl-nav__list > li.current-menu-item > a,
.dtl-nav__list > li.current-menu-ancestor > a {
  color: var(--dtl-pink);
}

.dtl-nav__list .sub-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--dtl-line);
  border-radius: 14px;
  box-shadow: var(--dtl-shadow);
  padding: 8px 0;
  z-index: 1002;
}

.dtl-nav__list li:hover > .sub-menu,
.dtl-nav__list li:focus-within > .sub-menu {
  display: block !important;
}

.dtl-nav__list .sub-menu li {
  display: block;
  width: 100%;
}

.dtl-nav__list .sub-menu a {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--dtl-ink);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.dtl-nav__list .sub-menu a:hover {
  background: #f8fafc;
  color: var(--dtl-pink);
}

.dtl-nav__list .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

.dtl-nav__list .menu-item-has-children > a::after {
  content: "▾";
  margin-left: 6px;
  font-size: 11px;
  color: var(--dtl-muted);
}

.dtl-home {
  color: var(--dtl-ink);
}

.dtl-hero-banner {
  background:
    radial-gradient(circle at 12% 18%, rgba(233, 30, 140, 0.08), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(0, 168, 232, 0.1), transparent 38%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  padding: 48px 0 56px;
}

.dtl-hero-banner__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.dtl-hero-banner__copy h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  margin: 0 0 16px;
}

.dtl-hero-banner__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dtl-muted);
  margin: 0 0 22px;
}

.dtl-hero-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dtl-hero-banner__visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--dtl-shadow);
  display: block;
}

.dtl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--dtl-ease), box-shadow 0.2s var(--dtl-ease), background 0.2s var(--dtl-ease);
}

.dtl-btn:focus-visible {
  outline: none;
  box-shadow: var(--dtl-focus);
}

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

.dtl-btn:hover {
  transform: translateY(-1px);
}

.dtl-btn--pink {
  background: linear-gradient(135deg, #e91e8c 0%, #c2185b 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(233, 30, 140, 0.25);
}

.dtl-btn--pink:hover {
  box-shadow: 0 14px 28px rgba(233, 30, 140, 0.32);
}

.dtl-btn--ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dtl-ink);
  border: 1px solid var(--dtl-line);
  box-shadow: var(--dtl-shadow-sm);
}

.dtl-btn--ghost:hover {
  border-color: #cbd5e1;
  background: #fff;
}

.dtl-btn--small {
  padding: 10px 16px;
  font-size: 14px;
}

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

.dtl-categories {
  padding: 28px 0 10px;
}

.dtl-category-mega {
  padding: 36px 0 20px;
}

.dtl-category-mega__head {
  text-align: center;
  margin-bottom: 28px;
}

.dtl-category-mega__head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--dtl-ink);
}

.dtl-category-mega__head p {
  margin: 0;
  color: var(--dtl-muted);
  font-size: 1rem;
}

.dtl-category-mega__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.dtl-category-mega__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.dtl-category-mega__item {
  position: relative;
}

.dtl-category-mega__trigger {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border: 1px solid var(--dtl-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--dtl-shadow-sm);
  cursor: pointer;
  text-align: left;
  color: var(--dtl-ink);
  transition: transform 0.25s var(--dtl-ease), box-shadow 0.25s var(--dtl-ease), border-color 0.25s var(--dtl-ease);
  overflow: hidden;
  min-height: 280px;
}

.dtl-category-mega__trigger:hover,
.dtl-category-mega__item.is-open .dtl-category-mega__trigger,
.dtl-category-mega__item.is-hovered .dtl-category-mega__trigger,
.dtl-category-mega__item:focus-within .dtl-category-mega__trigger {
  transform: translateY(-4px);
  box-shadow: var(--dtl-shadow);
  border-color: #cbd5e1;
}

.dtl-category-mega__visual {
  display: block;
  height: 160px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  overflow: hidden;
}

.dtl-category-mega__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--dtl-ease);
}

.dtl-category-mega__trigger:hover .dtl-category-mega__visual img,
.dtl-category-mega__item.is-open .dtl-category-mega__visual img,
.dtl-category-mega__item.is-hovered .dtl-category-mega__visual img {
  transform: scale(1.06);
}

.dtl-category-mega__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 14px;
  flex: 1;
}

.dtl-category-mega__copy strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.dtl-category-mega__copy span {
  font-size: 0.875rem;
  color: var(--dtl-muted);
  line-height: 1.45;
}

.dtl-category-mega__chevron {
  display: block;
  text-align: center;
  padding: 0 0 14px;
  color: var(--dtl-pink);
  font-size: 1.1rem;
  transition: transform 0.25s var(--dtl-ease);
}

.dtl-category-mega__item.is-open .dtl-category-mega__chevron,
.dtl-category-mega__item.is-hovered .dtl-category-mega__chevron,
.dtl-category-mega__item:hover .dtl-category-mega__chevron,
.dtl-category-mega__item:focus-within .dtl-category-mega__chevron {
  transform: rotate(180deg);
}

.dtl-category-mega__panels {
  display: none;
  position: relative;
  width: 100%;
  min-height: 0;
}

.dtl-category-mega__panels.is-active {
  display: block;
  margin-top: 14px;
}

.dtl-category-mega__dropdown {
  display: none;
  width: 100%;
  background: #fff;
  border: 1px solid var(--dtl-line);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  padding: 20px 22px 18px;
}

.dtl-category-mega__panels .dtl-category-mega__dropdown.is-active {
  display: block;
  animation: dtl-mega-panel-in 0.22s var(--dtl-ease);
}

@keyframes dtl-mega-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dtl-category-mega__dropdown--mobile {
  display: none;
}

.dtl-category-mega__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px 14px;
}

.dtl-category-mega__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--dtl-ink);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  min-height: 52px;
}

.dtl-category-mega__thumb {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--dtl-line);
}

.dtl-category-mega__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dtl-category-mega__link-text {
  line-height: 1.35;
}

.dtl-category-mega__link:hover {
  background: #fdf2f8;
  color: var(--dtl-pink-dark);
}

.dtl-category-mega__all {
  display: inline-block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--dtl-line);
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--dtl-blue-dark);
  text-decoration: none;
}

.dtl-category-mega__all:hover {
  color: var(--dtl-pink);
}

.dtl-categories__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.dtl-category-card {
  text-decoration: none;
  color: var(--dtl-ink);
  text-align: center;
  transition: transform 0.25s var(--dtl-ease);
}

.dtl-category-card:hover {
  transform: translateY(-3px);
}

.dtl-category-card__image {
  display: block;
  background: #fff;
  border: 1px solid var(--dtl-line);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 10px;
  min-height: 110px;
  overflow: hidden;
  transition: border-color 0.25s var(--dtl-ease), box-shadow 0.25s var(--dtl-ease);
}

.dtl-category-card:hover .dtl-category-card__image {
  border-color: #cbd5e1;
  box-shadow: var(--dtl-shadow-sm);
}

.dtl-category-card__image img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  transition: transform 0.35s var(--dtl-ease);
}

.dtl-category-card:hover .dtl-category-card__image img {
  transform: scale(1.04);
}

.dtl-promo-cards {
  padding: 24px 0;
}

.dtl-promo-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dtl-promo-card {
  border-radius: 24px;
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--dtl-shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.25s var(--dtl-ease), box-shadow 0.25s var(--dtl-ease);
}

.dtl-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.dtl-promo-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.dtl-promo-card p {
  margin: 0 0 18px;
  line-height: 1.6;
  color: var(--dtl-muted);
}

.dtl-promo-card--pink { background: #fde7f1; }
.dtl-promo-card--mint { background: #e7f8ef; }
.dtl-promo-card--sand { background: var(--dtl-sand); }

.dtl-promo-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--dtl-ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: transform 0.2s var(--dtl-ease), box-shadow 0.2s var(--dtl-ease);
}

.dtl-promo-card__btn::after {
  content: "→";
  transition: transform 0.2s var(--dtl-ease);
}

.dtl-promo-card:hover .dtl-promo-card__btn::after {
  transform: translateX(3px);
}

.dtl-quote,
.dtl-products,
.dtl-references,
.dtl-about,
.dtl-blog {
  padding: 28px 0 40px;
}

.dtl-section-head h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.dtl-section-head p {
  margin: 0 0 20px;
  color: var(--dtl-muted);
  line-height: 1.6;
}

.dtl-quote-form {
  background: #fff;
  border: 1px solid var(--dtl-line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--dtl-shadow);
}

.dtl-quote-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.dtl-quote-form label span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--dtl-muted);
}

.dtl-quote-form input,
.dtl-quote-form select,
.dtl-quote-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--dtl-line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
}

.dtl-quote-form__full {
  display: block;
  margin-bottom: 16px;
}

.dtl-products__track {
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
}

.dtl-products__inner {
  display: flex;
  gap: 18px;
  width: max-content;
  min-width: 100%;
  padding: 4px 2px 8px;
}

.dtl-product-card {
  width: 260px;
  background: #fff;
  border: 1px solid var(--dtl-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--dtl-shadow);
  flex: 0 0 auto;
}

.dtl-product-card__image {
  display: block;
  background: #f8fafc;
  height: 180px;
}

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

.dtl-product-card__body {
  padding: 16px;
}

.dtl-product-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dtl-blue-dark);
  background: #e0f2fe;
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 8px;
}

.dtl-product-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.dtl-product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.dtl-product-card p {
  margin: 0 0 10px;
  color: var(--dtl-muted);
  font-size: 14px;
  line-height: 1.5;
}

.dtl-product-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.dtl-product-card__meta span {
  font-size: 12px;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 5px 10px;
}

.dtl-references__track {
  overflow: hidden;
  padding: 8px 0 20px;
}

.dtl-featured-refs {
  position: relative;
}

.dtl-products--featured {
  padding-bottom: 24px;
  margin-bottom: 0;
}

.dtl-products--featured .dtl-products__track {
  padding-bottom: 8px;
}

.dtl-references--stacked {
  padding-top: 32px;
  margin-top: 0;
  padding-bottom: 16px;
}

.dtl-references--stacked .dtl-section-head {
  position: relative;
  z-index: 2;
  padding-top: 8px;
}

.dtl-references--stacked .dtl-section-head h2 {
  margin-top: 0;
}

.dtl-references--stacked .dtl-section-head p {
  margin-bottom: 24px;
}

.dtl-references--stacked .dtl-references__track {
  padding-top: 4px;
  padding-bottom: 28px;
}

.dtl-featured-refs + .dtl-blog {
  padding-top: 48px;
}

.dtl-references__inner {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: dtl-ref-flow 30s linear infinite;
}

.dtl-reference-card {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 380px;
  background: #fff;
  border: 1px solid var(--dtl-line);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: var(--dtl-shadow);
}

.dtl-reference-card__logo {
  flex: 0 0 auto;
  width: 148px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dtl-line);
  border-radius: 18px;
  background: #fff;
  padding: 10px;
}

.dtl-reference-card__logo img {
  max-width: 128px;
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.dtl-reference-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.dtl-reference-card span {
  color: var(--dtl-muted);
  font-size: 14px;
  line-height: 1.5;
}

.dtl-about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--dtl-line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--dtl-shadow);
}

.dtl-about__stats {
  display: grid;
  gap: 12px;
}

.dtl-about__stats div {
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px;
}

.dtl-about__stats strong {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}

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

.dtl-blog-card {
  background: #fff;
  border: 1px solid var(--dtl-line);
  border-radius: 20px;
  box-shadow: var(--dtl-shadow-sm);
  overflow: hidden;
  transition: transform 0.25s var(--dtl-ease), box-shadow 0.25s var(--dtl-ease);
}

.dtl-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dtl-shadow);
}

.dtl-blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.dtl-blog-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  overflow: hidden;
}

.dtl-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--dtl-ease);
}

.dtl-blog-card:hover .dtl-blog-card__image img {
  transform: scale(1.04);
}

.dtl-blog-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 160px;
  color: var(--dtl-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dtl-blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  flex: 1;
}

.dtl-blog-card__body time {
  font-size: 12px;
  font-weight: 700;
  color: var(--dtl-blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dtl-blog-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.dtl-blog-card__body p {
  margin: 0;
  color: var(--dtl-muted);
  font-size: 14px;
  line-height: 1.55;
}

.dtl-blog-card__cta {
  margin-top: auto;
  color: var(--dtl-pink);
  font-weight: 700;
  font-size: 14px;
}

.dtl-blog__footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.dtl-blog__empty {
  text-align: center;
  color: var(--dtl-muted);
  padding: 24px;
  background: #fff;
  border: 1px dashed var(--dtl-line);
  border-radius: 18px;
}

.dtl-instagram-feed {
  padding: 36px 0 28px;
  background: #fff;
}

.dtl-instagram-feed__embed {
  margin-bottom: 20px;
}

.dtl-instagram-feed__embed #sb_instagram,
.dtl-instagram-feed__embed .sbi {
  max-width: 100% !important;
}

.dtl-instagram-feed__embed .sbi_item {
  border-radius: 16px;
  overflow: hidden;
}

.dtl-instagram-feed__fallback {
  text-align: center;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 22px;
  padding: 32px 24px;
  margin-bottom: 20px;
}

.dtl-instagram-feed__fallback p {
  margin: 0 0 18px;
  color: var(--dtl-muted);
  line-height: 1.6;
  max-width: 560px;
  margin-inline: auto;
}

.dtl-instagram-feed__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: #f8fafc;
  border: 1px solid var(--dtl-line);
  border-radius: 18px;
  padding: 16px 20px;
}

.dtl-instagram-feed__cta span {
  color: var(--dtl-muted);
  font-size: 14px;
}

.dtl-wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  font-weight: 700;
}

@keyframes dtl-ref-flow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 721px) {
  .dtl-category-mega__panels {
    display: block;
  }

  .dtl-category-mega__panels:not(.is-active) {
    height: 0;
    margin-top: 0;
    overflow: hidden;
  }

  .dtl-category-mega__dropdown--mobile {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .dtl-header-main__inner {
    grid-template-columns: 1fr;
  }

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

  .dtl-category-mega__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dtl-categories__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dtl-promo-cards__grid,
  .dtl-about__grid,
  .dtl-blog__grid {
    grid-template-columns: 1fr 1fr;
  }

  .dtl-reference-card {
    min-width: 320px;
  }

  .dtl-reference-card__logo {
    width: 120px;
    height: 80px;
  }

  .dtl-reference-card__logo img {
    max-width: 104px;
    max-height: 64px;
  }

  .dtl-instagram-feed__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .dtl-hero-banner__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dtl-topbar {
    font-size: 11px;
    line-height: 1.4;
  }

  .dtl-topbar__inner {
    padding: 7px 12px;
  }

  .dtl-header-main__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0 14px;
  }

  .dtl-header-main__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }

  .dtl-logo__text {
    font-size: 18px;
  }

  .dtl-nav-toggle {
    display: inline-flex;
  }

  .dtl-search {
    order: 2;
    width: 100%;
    max-width: none;
    padding: 3px 4px 3px 14px;
  }

  .dtl-search input {
    font-size: 14px;
    padding: 10px 0;
  }

  .dtl-header-actions {
    order: 3;
    display: block;
    width: 100%;
  }

  .dtl-header-action {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #dbe3ea;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    text-align: left;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  }

  .dtl-header-action > .dtl-header-action__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #eff6ff;
    font-size: 18px;
    flex-shrink: 0;
    align-self: center;
    line-height: 1;
  }

  .dtl-header-action__copy {
    min-width: 0;
  }

  .dtl-header-action__copy small {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-bottom: 2px;
  }

  .dtl-header-action__copy strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    white-space: nowrap;
  }

  .dtl-nav {
    display: none;
    border-top: 0;
  }

  .dtl-site-header.is-nav-open .dtl-nav {
    display: block;
    border-top: 1px solid var(--dtl-line);
  }

  .dtl-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .dtl-nav__list > li > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--dtl-line);
  }

  .dtl-nav__list .sub-menu {
    position: static;
    display: none !important;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 8px 12px;
    min-width: 0;
  }

  .dtl-nav__list li.dtl-submenu-open > .sub-menu {
    display: block !important;
  }

  .dtl-nav__list .sub-menu .sub-menu {
    left: auto;
    padding-left: 12px;
  }

  .dtl-category-mega__panels {
    display: none !important;
  }

  .dtl-category-mega__dropdown--mobile {
    display: none;
    width: 100%;
    margin-top: -1px;
    border: 0;
    border-top: 1px solid var(--dtl-line);
    border-radius: 0 0 22px 22px;
    box-shadow: none;
    padding: 12px 16px 16px;
    animation: none;
  }

  .dtl-category-mega__item.is-open .dtl-category-mega__dropdown--mobile {
    display: block;
  }

  .dtl-category-mega__trigger {
    min-height: 0;
  }

  .dtl-category-mega__visual {
    height: 130px;
  }

  .dtl-category-mega__links {
    grid-template-columns: 1fr;
  }

  .dtl-category-mega__cards,
  .dtl-categories__grid,
  .dtl-promo-cards__grid,
  .dtl-quote-form__grid,
  .dtl-blog__grid {
    grid-template-columns: 1fr;
  }

  .dtl-about__grid {
    grid-template-columns: 1fr;
  }
}

/* v1.0.2 refresh */
body.dtl-cepte-home{background:#fff}
.dtl-logo__image{width:46px;height:46px;object-fit:contain;border-radius:10px;display:block}
.dtl-logo__text{font-size:22px;font-weight:800;color:#222;letter-spacing:-.02em}
.dtl-logo__mark{display:none!important}
.dtl-search{min-width:0;max-width:560px;width:100%;margin:0 auto;background:#fff;border:1px solid #dfe7ef;box-shadow:0 8px 24px rgba(15,23,42,.05)}
.dtl-search input{font-size:15px;padding:12px 0;color:#334155}
.dtl-search button{width:42px;height:42px;background:transparent;color:#64748b;flex-shrink:0;border:0;border-radius:0;padding:0;display:inline-flex;align-items:center;justify-content:center}
.dtl-search button:hover{color:#334155}
.dtl-header-action{display:flex;align-items:center;gap:10px;white-space:nowrap}
.dtl-header-action__icon{font-size:22px;line-height:1}
.dtl-header-action__copy small{display:block;color:#64748b;font-size:11px}
.dtl-header-action__copy strong{display:block;font-size:13px;color:#111}
.dtl-nav__list{justify-content:center;gap:0}
.dtl-nav__list>li>a{padding:14px 18px;font-size:15px}
.dtl-hero-banner{background:radial-gradient(circle at 12% 18%,rgba(233,30,140,.08),transparent 42%),radial-gradient(circle at 88% 12%,rgba(0,168,232,.1),transparent 38%),linear-gradient(180deg,#f8fafc 0%,#eef2f7 100%);padding:48px 0 56px}
.dtl-hero-banner__copy h1{font-size:clamp(34px,5vw,52px);font-weight:800;color:#111;line-height:1.08}
.dtl-hero-banner__copy p{font-size:18px;color:#475569;max-width:560px}
.dtl-cepte-card{width:220px;flex:0 0 auto;background:#fff;border:1px solid #edf2f7;border-radius:18px;overflow:hidden;box-shadow:0 10px 24px rgba(15,23,42,.05);transition:transform .2s ease,box-shadow .2s ease}
.dtl-cepte-card:hover{transform:translateY(-3px);box-shadow:0 16px 32px rgba(15,23,42,.08)}
.dtl-cepte-card__link{display:block;text-decoration:none;color:inherit}
.dtl-cepte-card__image{display:block;background:#f8fafc;height:170px;padding:16px}
.dtl-cepte-card__image img{width:100%;height:100%;object-fit:cover}
.dtl-category-card__image img{object-fit:cover}
.dtl-product-page__visual img{object-fit:cover}
.dtl-cepte-card__body{display:grid;gap:6px;padding:14px 16px 18px}
.dtl-cepte-card__body strong{font-size:18px;color:#111;line-height:1.25}
.dtl-cepte-card__qty{font-size:14px;color:#64748b}
.dtl-cepte-card__price{font-size:15px;font-weight:700;color:#111}
.dtl-section-head--center{text-align:center;max-width:760px;margin:0 auto 24px}
.dtl-instagram{padding:36px 0;background:#fff}
.dtl-instagram__grid{display:flex;align-items:center;justify-content:space-between;gap:24px;background:#f8fafc;border:1px solid #e2e8f0;border-radius:24px;padding:28px 32px}
.dtl-instagram h2{margin:0 0 10px;font-size:28px}
.dtl-instagram p{margin:0;color:#64748b;line-height:1.7;max-width:680px}
.dtl-about__content{max-width:920px;margin:0 auto;background:#fff;border:1px solid #e2e8f0;border-radius:24px;padding:32px;box-shadow:0 10px 24px rgba(15,23,42,.04)}
.dtl-about__content h2{margin-top:0;font-size:32px}
.dtl-about__content p{margin-bottom:0;color:#475569;line-height:1.8;font-size:17px}
.dtl-order-page{padding:28px 0 48px;background:#fff}
.dtl-product-page{padding:12px 0 24px;background:#fff}
.dtl-breadcrumb{display:flex;gap:8px;align-items:center;flex-wrap:wrap;color:#64748b;font-size:13px;margin-bottom:12px}
.dtl-breadcrumb a{text-decoration:none;color:#64748b}
.dtl-order-page__grid{display:grid!important;grid-template-columns:minmax(300px,.92fr) minmax(380px,1.08fr)!important;gap:24px;align-items:start}
.dtl-order-page__gallery{position:sticky;top:108px;background:#f8fafc;border:1px solid #e2e8f0;border-radius:18px;padding:16px;min-height:340px;display:flex;align-items:center;justify-content:center}
.dtl-order-page__gallery img{width:100%;max-height:400px;object-fit:contain;border-radius:12px;display:block}
.dtl-order-page__gallery-placeholder{color:#64748b;font-weight:700;font-size:18px;text-align:center;padding:48px 16px}
.dtl-order-page__panel h1{margin:0 0 4px;font-size:28px;line-height:1.1}
.dtl-order-page__subtitle{color:#e6007e;font-size:13px;font-weight:700;margin:0 0 4px}
.dtl-order-page__desc{color:#64748b;line-height:1.45;margin:0 0 10px;font-size:13px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.dtl-order-form{display:grid;gap:10px}
.dtl-order-form__hint{margin:0 0 8px;font-size:13px;line-height:1.5;color:#64748b}
.dtl-order-form__grid{display:grid;grid-template-columns:1fr 1fr;gap:8px 12px}
.dtl-order-form__field--full{grid-column:1/-1}
.dtl-order-form__field label{display:block;font-size:12px;font-weight:700;color:#334155;margin-bottom:4px}
.dtl-order-form__field input,.dtl-order-form__field select,.dtl-order-form__field textarea{width:100%;box-sizing:border-box;border:1px solid #dbe3ea;border-radius:10px;padding:8px 11px;font:inherit;background:#fff;font-size:14px}
.dtl-order-form__field input[list]::-webkit-calendar-picker-indicator,
.dtl-order-form__field input[list]::-webkit-list-button{display:none!important;opacity:0!important;width:0!important;height:0!important;pointer-events:none!important;-webkit-appearance:none!important;appearance:none!important}
.dtl-order-form__field input[list]{background-image:none!important;padding-right:11px}
.dtl-order-form__field input::placeholder,.dtl-order-form__field textarea::placeholder{color:#94a3b8;font-size:13px}
.dtl-order-form__field textarea{min-height:84px;resize:vertical}
.dtl-order-help{margin-top:16px;padding-top:16px;border-top:1px dashed #dbe3ea}
.dtl-order-help p{margin:0 0 12px;font-size:13px;line-height:1.6;color:#64748b}
.dtl-order-help .dtl-btn{font-weight:700}
.dtl-order-summary{margin-top:2px;padding:10px 12px;border:1px solid #e2e8f0;border-radius:12px;background:#f8fafc}
.dtl-order-summary--compact{display:grid;grid-template-columns:1fr 1fr;gap:5px 12px}
.dtl-order-summary__row{display:flex;justify-content:space-between;gap:8px;font-size:12px;color:#64748b}
.dtl-order-summary__row strong{color:#111;font-size:12px;font-weight:700;text-align:right}
.dtl-order-summary__price{grid-column:1/-1;padding-top:5px;border-top:1px solid #e2e8f0;margin-top:2px}
.dtl-order-summary h3{margin:0 0 12px;font-size:18px}
.dtl-order-summary table{width:100%;border-collapse:collapse;font-size:14px}
.dtl-order-summary td{padding:8px 0;border-bottom:1px solid #e8edf3;vertical-align:top}
.dtl-order-summary td:first-child{color:#64748b;width:42%}
.dtl-order-summary__price td{font-weight:700;color:#111}
.dtl-order-summary__note{margin:6px 0 0;font-size:11px;color:#64748b;line-height:1.4;text-align:center}
.dtl-btn--large{padding:12px 18px;font-size:15px}
@media (max-width:1024px){.dtl-header-main__inner{grid-template-columns:1fr;gap:16px}.dtl-search{max-width:none}.dtl-order-page__grid{grid-template-columns:1fr!important}.dtl-order-page__gallery{position:static;min-height:220px;max-height:280px}.dtl-instagram__grid{flex-direction:column;align-items:flex-start}}
@media (max-width:720px){.dtl-order-form__grid,.dtl-order-summary--compact{grid-template-columns:1fr}}

/* v1.0.3 full-width hero + inner pages */
.dtl-section-full {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.dtl-page-hero {
  background: #f1f5f9;
  padding: 36px 0 42px;
  margin-bottom: 28px;
}

.dtl-page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.dtl-page-hero__copy h1 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: #111;
}

.dtl-page-hero__copy p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
}

.dtl-page-hero__visual img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.dtl-page-shell,
.dtl-shop-shell {
  padding-bottom: 48px;
}

.dtl-page-shell__inner {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.dtl-shop-shell__grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.dtl-shop-sidebar {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  position: sticky;
  top: 120px;
}

.dtl-shop-sidebar h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.dtl-shop-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.dtl-shop-sidebar__list a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: 14px;
}

.dtl-shop-sidebar__list a:hover {
  background: #f8fafc;
  color: #e6007e;
}

.dtl-shop-shell--catalog {
  padding-top: 20px;
}

.dtl-breadcrumb--shop {
  margin-bottom: 18px;
  font-size: 14px;
}

.dtl-breadcrumb--shop a {
  color: #64748b;
  text-decoration: none;
}

.dtl-breadcrumb--shop strong {
  color: #0f172a;
}

.dtl-shop-accordion {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.dtl-shop-accordion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dtl-shop-accordion__link {
  flex: 1;
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #334155;
  font-weight: 700;
  font-size: 14px;
}

.dtl-shop-accordion__link:hover,
.dtl-shop-accordion__link.is-active,
.dtl-shop-accordion__items a.is-active {
  background: #fdf2f8;
  color: #e6007e;
}

.dtl-shop-accordion__toggle {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: #f8fafc;
  color: #64748b;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dtl-shop-accordion__group.is-open .dtl-shop-accordion__toggle {
  transform: rotate(90deg);
}

.dtl-shop-accordion__items {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 12px;
  display: none;
  gap: 2px;
}

.dtl-shop-accordion__group.is-open .dtl-shop-accordion__items {
  display: grid;
}

.dtl-shop-accordion__items a {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

.dtl-shop-accordion__items a:hover {
  background: #f8fafc;
  color: #e6007e;
}

.dtl-shop-main__head {
  margin-bottom: 20px;
}

.dtl-shop-main__head h1 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.dtl-shop-main__head p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.dtl-shop-empty {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border: 1px dashed #dbe3ea;
  border-radius: 20px;
}

.dtl-shop-empty p {
  margin: 0 0 16px;
  color: #64748b;
}

.dtl-shop-sidebar__list a:hover,
.dtl-shop-sidebar__list .current-cat a {
  background: #f8fafc;
  color: #e6007e;
}

.dtl-shop-products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.dtl-shop-products::before,
.dtl-shop-products::after {
  display: none !important;
}

.dtl-shop-products > li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}

.dtl-shop-products .dtl-cepte-card {
  width: 100%;
}

body.dtl-cepte-home #primary .site-main,
body.dtl-cepte-home .site-main,
body.dtl-cepte-home .content-area,
body.dtl-cepte-home .container,
body.dtl-cepte-home .container-fluid,
body.dtl-cepte-home .row > [class*="col-"] {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.dtl-cepte-home .site-content > .container,
body.dtl-cepte-home #content > .container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 1024px) {
  .dtl-page-hero__grid,
  .dtl-shop-shell__grid {
    grid-template-columns: 1fr;
  }

  .dtl-shop-sidebar {
    position: static;
  }

  .dtl-shop-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .dtl-shop-products {
    grid-template-columns: 1fr;
  }

  .dtl-page-shell__inner {
    padding: 20px;
  }
}


/* v1.0.5 hero fix */
.dtl-hero-banner,
.dtl-page-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 168, 232, 0.08), transparent 40%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%) !important;
}
body.dtl-cepte-home .container.content-container,
body.dtl-cepte-home #content > .container,
body.dtl-cepte-home .site-content > .container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* v1.0.8 footer + compact product */
.dtl-site-footer {
  background: #0b3044;
  color: #dbeafe;
  margin-top: 40px;
}

#dtl-site-footer h1,
#dtl-site-footer h2,
#dtl-site-footer h3,
#dtl-site-footer h4,
#dtl-site-footer h5,
#dtl-site-footer h6 {
  color: #fff !important;
  font-family: inherit !important;
}

#dtl-site-footer .dtl-site-footer__col h3 {
  font-size: 17px !important;
  margin-bottom: 12px !important;
}

#dtl-site-footer p {
  color: rgba(219, 234, 254, 0.92) !important;
}

#dtl-site-footer strong {
  color: #93c5fd !important;
}

#dtl-site-footer a:not(.dtl-site-footer__wa) {
  color: #fff !important;
}

#dtl-site-footer span {
  color: #fff !important;
}

#dtl-site-footer .dtl-site-footer__bottom p {
  color: rgba(219, 234, 254, 0.78) !important;
}

.dtl-site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 36px 0 24px;
}

.dtl-site-footer__brand p {
  margin: 12px 0 16px;
  color: rgba(219, 234, 254, 0.88);
  line-height: 1.65;
  font-size: 14px;
  max-width: 320px;
}

.dtl-site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}

.dtl-site-footer__logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.dtl-site-footer__col h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 17px;
}

.dtl-site-footer__col p {
  margin: 0 0 14px;
  color: rgba(219, 234, 254, 0.88);
  line-height: 1.65;
  font-size: 14px;
}

.dtl-site-footer__list,
.dtl-site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.dtl-site-footer__list li,
.dtl-site-footer__links li {
  display: grid;
  gap: 4px;
  font-size: 14px;
}

.dtl-site-footer__list strong {
  color: #93c5fd;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dtl-site-footer__list a,
.dtl-site-footer__links a,
.dtl-site-footer__list span {
  color: #fff;
  text-decoration: none;
}

.dtl-site-footer__list a:hover,
.dtl-site-footer__links a:hover {
  color: #7dd3fc;
}

.dtl-site-footer__wa {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.dtl-site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0 20px;
}

.dtl-site-footer__bottom p {
  margin: 0;
  text-align: center;
  color: rgba(219, 234, 254, 0.75);
  font-size: 13px;
}

.dtl-btn--outline {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

body.dtl-product-compact .dtl-topbar__inner {
  padding: 4px 16px;
  font-size: 12px;
}

body.dtl-product-compact .dtl-header-main__inner {
  padding: 8px 0;
  gap: 14px;
}

body.dtl-product-compact .dtl-logo__image {
  width: 38px;
  height: 38px;
}

body.dtl-product-compact .dtl-logo__text {
  font-size: 18px;
}

body.dtl-product-compact .dtl-search input {
  font-size: 14px;
  padding: 8px 0;
}

body.dtl-product-compact .dtl-nav__list > li > a {
  padding: 8px 12px !important;
  font-size: 14px !important;
}

body.dtl-product-compact .dtl-product-page {
  padding: 0 0 16px;
}

body.dtl-product-compact .dtl-breadcrumb {
  margin-bottom: 6px;
  font-size: 12px;
}

body.dtl-product-compact .dtl-order-page__grid {
  gap: 16px;
}

body.dtl-product-compact .dtl-order-page__gallery {
  min-height: 220px;
  padding: 10px;
  top: 88px;
}

body.dtl-product-compact .dtl-order-page__gallery img {
  max-height: 260px;
}

body.dtl-product-compact .dtl-order-page__panel h1 {
  font-size: 24px;
  margin-bottom: 2px;
}

body.dtl-product-compact .dtl-order-page__subtitle {
  margin-bottom: 2px;
}

body.dtl-product-compact .dtl-order-page__desc {
  display: none;
}

body.dtl-product-compact .dtl-order-form {
  gap: 6px;
}

body.dtl-product-compact .dtl-order-form__grid {
  gap: 6px 10px;
}

body.dtl-product-compact .dtl-order-form__field label {
  margin-bottom: 2px;
  font-size: 11px;
}

body.dtl-product-compact .dtl-order-form__field input,
body.dtl-product-compact .dtl-order-form__field select {
  padding: 6px 10px;
  font-size: 13px;
}

body.dtl-product-compact .dtl-order-summary {
  padding: 8px 10px;
}

body.dtl-product-compact .dtl-order-summary--compact {
  gap: 4px 10px;
}

body.dtl-product-compact .dtl-order-summary__row {
  font-size: 11px;
}

body.dtl-product-compact .dtl-order-summary__note {
  display: none;
}

body.dtl-product-compact .dtl-btn--large {
  padding: 10px 16px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .dtl-site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .dtl-site-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* v1.0.9 all pages */
.dtl-page-shell {
  padding: 0 0 40px;
}

.dtl-page-body {
  color: #334155;
  line-height: 1.75;
  font-size: 16px;
}

.dtl-page-body h1,
.dtl-page-body h2,
.dtl-page-body h3,
.dtl-page-body h4 {
  color: #111827;
  line-height: 1.25;
}

.dtl-page-body p,
.dtl-page-body li {
  color: #475569;
}

.dtl-page-body a {
  color: #0077b6;
}

.dtl-page-body img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.dtl-page-body .dt-page-shell,
.dtl-page-body .dt-contact-shell,
.dtl-page-body .dt-shop-shell {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: inherit !important;
}

.dtl-page-body .dt-hero-card {
  border-radius: 20px;
  margin-bottom: 20px;
}

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

.dtl-cepte-card--catalog {
  width: 100%;
}

.dtl-cepte-card--catalog .dtl-cepte-card__image {
  height: 180px;
}

body.dtl-catalog-page .entry-content {
  padding-top: 0 !important;
}

body.dtl-catalog-page .entry-content > p:first-child {
  display: none;
}

@media (max-width: 1024px) {
  .dtl-shop-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .dtl-shop-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Inner page content blocks */
.dtl-page-body .dt-hero-card {
  display: none !important;
}

.dtl-page-body .dt-grid,
.dtl-page-body .dt-cases,
.dtl-page-body .dt-mini-grid {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.dtl-page-body .dt-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dtl-page-body .dt-cases {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dtl-page-body .dt-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.dtl-page-body .dt-grid-card,
.dtl-page-body .dt-case,
.dtl-page-body .dt-mini,
.dtl-page-body .dt-band,
.dtl-page-body .dt-summary,
.dtl-page-body .dt-contact-card,
.dtl-page-body .dt-contact-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.dtl-page-body .dt-grid-card h3,
.dtl-page-body .dt-case h3,
.dtl-page-body .dt-contact-card h2,
.dtl-page-body .dt-contact-panel h2,
.dtl-page-body .dt-band h2,
.dtl-page-body .dt-summary h2 {
  margin: 0 0 12px;
  color: #111827;
}

.dtl-page-body .dt-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff3e8;
  color: #c2410c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dtl-page-body .dt-band {
  margin-top: 24px;
  background: #fff7ef;
  border-color: rgba(255, 122, 0, 0.16);
}

.dtl-page-body .dt-list,
.dtl-page-body .dt-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.dtl-page-body .dt-list span,
.dtl-page-body .dt-points span {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-weight: 600;
  color: #1f2937;
}

.dtl-page-body .dt-cta,
.dtl-page-body .dt-contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.dtl-page-body .dt-button,
.dtl-page-body .dt-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.dtl-page-body .dt-button-primary,
.dtl-page-body .dt-contact-btn-primary {
  background: #ff7a00;
  color: #fff;
}

.dtl-page-body .dt-button-secondary,
.dtl-page-body .dt-contact-btn-secondary {
  background: #0f3d56;
  color: #fff;
}

.dtl-page-body .dt-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.dtl-page-body .dt-contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.dtl-page-body .dt-contact-row {
  padding: 16px 18px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.dtl-page-body .dt-contact-row strong {
  display: block;
  margin-bottom: 6px;
  color: #111827;
}

.dtl-page-body .dt-brief-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.dtl-page-body .dt-brief-list div {
  padding: 14px 16px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.dtl-page-body .dt-logo-marquee-shell {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  margin: 24px 0;
  border-radius: 20px;
  background: linear-gradient(90deg, #fff7ef 0%, #fff 48%, #fff7ef 100%);
}

.dtl-page-body .dt-logo-marquee-inner {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: dtlLogoFlow 28s linear infinite;
}

.dtl-page-body .dt-logo-marquee-shell:hover .dt-logo-marquee-inner {
  animation-play-state: paused;
}

.dtl-page-body .dt-logo-chip {
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.dtl-page-body .dt-logo-box {
  width: 92px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  flex: 0 0 auto;
}

.dtl-page-body .dt-logo-box img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

.dtl-page-body .dt-logo-copy strong {
  display: block;
  font-size: 16px;
  color: #1f2937;
}

.dtl-page-body .dt-logo-copy span {
  display: block;
  font-size: 13px;
  color: #64748b;
}

@keyframes dtlLogoFlow {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@media (max-width: 1024px) {
  .dtl-page-body .dt-grid,
  .dtl-page-body .dt-cases,
  .dtl-page-body .dt-mini-grid,
  .dtl-page-body .dt-list,
  .dtl-page-body .dt-points,
  .dtl-page-body .dt-contact-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --dtl-software: #4338ca;
  --dtl-software-soft: #eef2ff;
}

.dtl-btn--software {
  background: var(--dtl-software);
  border-color: var(--dtl-software);
  color: #fff;
}

.dtl-btn--software:hover {
  background: #3730a3;
  border-color: #3730a3;
  color: #fff;
}

.dtl-page-hero--software {
  background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
}

.dtl-page-hero__tag,
.dtl-order-page__partner,
.dtl-software-banner__tag,
.dtl-cepte-card__badge,
.dtl-shop-sidebar__partner-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--dtl-software-soft);
  color: var(--dtl-software);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dtl-software-banner {
  padding: 28px 0 10px;
}

.dtl-software-banner__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.dtl-software-banner__copy {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
  border: 1px solid #e0e7ff;
}

.dtl-software-banner__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.dtl-software-banner__copy p {
  margin: 0 0 18px;
  color: #475569;
  line-height: 1.6;
}

.dtl-software-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dtl-software-banner__cards {
  display: grid;
  gap: 12px;
}

.dtl-software-banner__card {
  display: block;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dtl-software-banner__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(67, 56, 202, 0.12);
}

.dtl-software-banner__card strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 16px;
}

.dtl-software-banner__card span {
  display: block;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.dtl-products--software .dtl-section-head p {
  margin-top: 8px;
  color: #64748b;
}

.dtl-cepte-card--software .dtl-cepte-card__badge {
  margin-bottom: 6px;
}

.dtl-shop-shell--software .dtl-software-intro {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--dtl-software-soft);
  color: #4338ca;
}

.dtl-shop-sidebar__partner {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.dtl-shop-sidebar__partner p {
  margin: 10px 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.dtl-shop-sidebar__partner a {
  color: var(--dtl-software);
  font-weight: 700;
  text-decoration: none;
}

.dtl-product-page--software .dtl-order-page__panel {
  border-color: #e0e7ff;
}

@media (max-width: 900px) {
  .dtl-software-banner__grid {
    grid-template-columns: 1fr;
  }
}

/* v1.0.15 modern polish */
.dtl-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.dtl-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--dtl-shadow-sm);
}

.dtl-hero-trust__icon {
  font-size: 15px;
  line-height: 1;
}

.dtl-hero-banner__visual {
  position: relative;
}

.dtl-hero-banner__visual::before {
  content: "";
  position: absolute;
  inset: 8% -4% -6% 8%;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.12), rgba(0, 168, 232, 0.12));
  z-index: 0;
}

.dtl-hero-banner__visual img {
  position: relative;
  z-index: 1;
}

.dtl-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--dtl-ease), transform 0.55s var(--dtl-ease);
}

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

.dtl-cepte-card {
  scroll-snap-align: start;
}

.dtl-cepte-card__image img {
  transition: transform 0.35s var(--dtl-ease);
}

.dtl-cepte-card:hover .dtl-cepte-card__image img {
  transform: scale(1.05);
}

.dtl-order-form__field input:focus,
.dtl-order-form__field select:focus,
.dtl-order-form__field textarea:focus,
.dtl-search input:focus {
  outline: none;
  border-color: #e91e8c;
  box-shadow: var(--dtl-focus);
}

.dtl-order-page__panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--dtl-shadow-sm);
}

.dtl-shop-sidebar__list a {
  transition: background 0.2s var(--dtl-ease), color 0.2s var(--dtl-ease), transform 0.2s var(--dtl-ease);
}

.dtl-shop-sidebar__list a:hover {
  transform: translateX(2px);
}

.dtl-site-footer__links a,
.dtl-site-footer__list a {
  transition: color 0.2s var(--dtl-ease), opacity 0.2s var(--dtl-ease);
}

.dtl-site-footer__links a:hover,
.dtl-site-footer__list a:hover {
  opacity: 0.85;
}

.dtl-wa-float {
  transition: transform 0.25s var(--dtl-ease), box-shadow 0.25s var(--dtl-ease);
  animation: dtl-wa-pulse 3s ease-in-out infinite;
}

.dtl-wa-float:hover {
  transform: translateY(-2px) scale(1.02);
  animation: none;
}

@keyframes dtl-wa-pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 14px 34px rgba(37, 211, 102, 0.48); }
}

.dtl-page-hero,
.dtl-page-hero--software {
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 168, 232, 0.08), transparent 40%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%) !important;
}

.dtl-section-head h2 {
  letter-spacing: -0.02em;
}

.dtl-blog-card {
  transition: transform 0.25s var(--dtl-ease), box-shadow 0.25s var(--dtl-ease);
}

.dtl-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.dtl-reference-card {
  transition: transform 0.25s var(--dtl-ease);
}

.dtl-reference-card:hover {
  transform: translateY(-2px);
}

.dtl-nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--dtl-focus);
}

@media (prefers-reduced-motion: reduce) {
  .dtl-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dtl-references__inner {
    animation: none;
  }

  .dtl-references--stacked {
    margin-top: 0;
    padding-top: 24px;
  }

  .dtl-wa-float {
    animation: none;
  }

  .dtl-btn,
  .dtl-cepte-card,
  .dtl-category-card,
  .dtl-promo-card,
  .dtl-blog-card {
    transition: none;
  }
}

@media (max-width: 720px) {
  .dtl-hero-banner {
    padding: 28px 0 36px;
  }

  .dtl-hero-banner__copy h1 {
    font-size: clamp(26px, 7.2vw, 34px);
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .dtl-hero-banner__copy p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .dtl-hero-banner__actions {
    flex-direction: column;
    gap: 10px;
  }

  .dtl-hero-banner__actions .dtl-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 13px 18px;
  }

  .dtl-hero-trust {
    margin-top: 16px;
    gap: 8px;
  }

  .dtl-hero-trust li {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    font-size: 11px;
    padding: 8px 10px;
  }

  .dtl-hero-banner__visual {
    margin-top: 8px;
  }

  .dtl-order-page__panel {
    padding: 16px;
  }
}

