/*
Theme Name: DerevoKraft
Theme URI: https://derevokraft.com/
Author: DerevoKraft
Author URI: https://derevokraft.com/
Description: Custom lightweight WooCommerce theme for DerevoKraft. No third-party theme dependencies.
Version: 0.2.0
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 8.1
Text Domain: derevokraft
*/

:root {
  --dk-bg: #f8f1e7;
  --dk-card: #fffaf2;
  --dk-card-strong: #ffffff;
  --dk-text: #1d130d;
  --dk-muted: #746458;
  --dk-line: #eadcc9;
  --dk-accent: #22150d;
  --dk-accent-2: #8a5a2d;
  --dk-soft: #ead6bd;
  --dk-success: #0f8a47;
  --dk-radius: 24px;
  --dk-radius-sm: 14px;
  --dk-shadow: 0 20px 60px rgba(63, 38, 16, .10);
  --dk-container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--dk-bg);
  color: var(--dk-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--dk-accent-2); }

img { max-width: 100%; height: auto; }

.dk-container {
  width: min(100% - 40px, var(--dk-container));
  margin-inline: auto;
}

.dk-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--dk-line);
  background: rgba(248, 241, 231, .92);
  backdrop-filter: blur(12px);
}

.admin-bar .dk-site-header { top: 32px; }

.dk-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dk-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dk-text);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.04em;
  text-decoration: none;
}

.dk-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dk-accent);
  color: #fff;
  font-size: 14px;
}

.dk-main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dk-main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--dk-text);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.dk-main-nav a:hover,
.dk-main-nav a[aria-current="page"] {
  background: #fff;
  box-shadow: 0 1px 0 rgba(35, 20, 12, .06);
}

.dk-main-nav .dk-nav-cart {
  background: var(--dk-accent);
  color: #fff;
}

.dk-main-nav .dk-nav-cart:hover { color: #fff; background: #3a281d; }

.dk-site-main,
.dk-main {
  min-height: 55vh;
  padding: 64px 0 76px;
}

.dk-hero {
  padding: 72px 0 52px;
}

.dk-hero-card {
  border: 1px solid var(--dk-line);
  border-radius: 34px;
  background: radial-gradient(circle at 80% 15%, #efd5ad 0, #ecd7ba 32%, #fff8ec 100%);
  box-shadow: var(--dk-shadow);
  padding: clamp(28px, 5vw, 64px);
}

.dk-kicker {
  margin: 0 0 14px;
  color: #71451f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dk-hero h1,
.dk-page-title,
.woocommerce-products-header__title.page-title,
.product_title.entry-title {
  margin: 0;
  color: var(--dk-text);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .98;
}

.dk-hero h1 { max-width: 760px; font-size: clamp(42px, 7vw, 86px); }
.dk-page-title,
.woocommerce-products-header__title.page-title { font-size: clamp(34px, 5vw, 58px); margin-bottom: 24px; }
.product_title.entry-title { font-size: clamp(34px, 4.6vw, 58px); }

.dk-hero-text {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--dk-muted);
  font-size: clamp(17px, 2vw, 21px);
}

.dk-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.dk-button,
.button,
button,
input[type="submit"],
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--dk-accent);
  color: #fff !important;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.dk-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.single_add_to_cart_button:hover {
  background: #3a281d;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(35, 20, 12, .14);
}

.dk-button.secondary {
  background: #fff;
  color: var(--dk-text) !important;
  border: 1px solid var(--dk-line);
}

.dk-section { padding: 48px 0; }

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

.dk-section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
  letter-spacing: -.05em;
}

.dk-link { color: var(--dk-accent-2); font-weight: 800; }

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

.dk-category-card,
ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  border: 1px solid var(--dk-line);
  border-radius: var(--dk-radius);
  background: rgba(255, 250, 242, .92);
  box-shadow: 0 12px 34px rgba(63, 38, 16, .06);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.dk-category-card:hover,
ul.products li.product:hover {
  transform: translateY(-3px);
  border-color: #dfc7a9;
  box-shadow: var(--dk-shadow);
}

.dk-category-card {
  min-height: 126px;
  padding: 22px;
  text-decoration: none;
}

.dk-category-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.dk-category-card p {
  margin: 0;
  color: var(--dk-muted);
  font-weight: 700;
  font-size: 14px;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: block;
  padding: 0 0 16px;
  text-decoration: none;
}

.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 !important;
  background: #fff;
}

.woocommerce-loop-product__title {
  min-height: 60px;
  margin: 16px 18px 8px !important;
  padding: 0 !important;
  color: var(--dk-text);
  font-size: 17px !important;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.woocommerce ul.products li.product .price {
  display: block;
  margin: 0 18px 14px;
  color: var(--dk-accent-2) !important;
  font-size: 18px !important;
  font-weight: 950;
}

.woocommerce ul.products li.product .button {
  margin: 0 18px 20px !important;
}

.woocommerce .woocommerce-result-count {
  color: var(--dk-muted);
  font-weight: 700;
}

.woocommerce .woocommerce-ordering select,
select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea {
  min-height: 46px;
  border: 1px solid var(--dk-line);
  border-radius: 14px;
  background: #fff;
  color: var(--dk-text);
  padding: 10px 13px;
  font: inherit;
}

/* Product page */
.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none !important;
  width: auto !important;
}

.woocommerce div.product div.images img {
  border-radius: 22px;
  background: #fff;
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px !important;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: auto !important;
  float: none !important;
}

.woocommerce div.product .summary .price {
  color: var(--dk-accent-2);
  font-size: 28px;
  font-weight: 950;
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.woocommerce .quantity .qty {
  width: 76px;
  min-height: 48px;
  text-align: center;
}

.product_meta {
  margin-top: 24px;
  color: var(--dk-muted);
  font-size: 14px;
}

.product_meta a { color: var(--dk-accent-2); font-weight: 800; }

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 8px;
  padding: 0 !important;
  margin: 44px 0 18px !important;
  border: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none !important; }

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid var(--dk-line) !important;
  border-radius: 999px !important;
  background: #fff !important;
  padding: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; }

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 12px 18px !important;
  font-weight: 850 !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
  border: 1px solid var(--dk-line);
  border-radius: var(--dk-radius);
  background: rgba(255, 250, 242, .92);
  padding: 24px;
}

/* Cart / checkout */
.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout,
.woocommerce-order,
.woocommerce-MyAccount-content,
.woocommerce-MyAccount-navigation,
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border-radius: var(--dk-radius);
}

.woocommerce-cart-form,
.woocommerce-checkout,
.woocommerce-order {
  border: 1px solid var(--dk-line);
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 34px rgba(63, 38, 16, .06);
  padding: clamp(18px, 3vw, 34px);
}

.woocommerce table.shop_table {
  border: 1px solid var(--dk-line) !important;
  border-radius: var(--dk-radius) !important;
  overflow: hidden;
  background: #fff;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--dk-line) !important;
}

.woocommerce .cart_totals {
  float: none !important;
  width: 100% !important;
  border: 1px solid var(--dk-line);
  border-radius: var(--dk-radius);
  background: #fff;
  padding: 22px;
}

.woocommerce form .form-row label { font-weight: 800; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea { line-height: 1.4; }

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--dk-success) !important;
  background: #edf8f1;
  color: #14351e;
}

.woocommerce-message::before,
.woocommerce-info::before { color: var(--dk-success) !important; }

.dk-site-footer {
  background: #1c120c;
  color: #fff8ec;
  padding: 52px 0;
}

.dk-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 40px;
}

.dk-site-footer h3,
.dk-site-footer h4 {
  margin: 0 0 14px;
  letter-spacing: -.03em;
}

.dk-site-footer p,
.dk-site-footer a { color: #eadcc9; }
.dk-site-footer a:hover { color: #fff; }

.dk-footer-links {
  display: grid;
  gap: 8px;
}

.dk-empty-note {
  border: 1px solid var(--dk-line);
  border-radius: var(--dk-radius);
  background: rgba(255,255,255,.55);
  padding: 28px;
  color: var(--dk-muted);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .dk-header-inner { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .dk-main-nav { justify-content: flex-start; }
  .dk-category-grid,
  ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .woocommerce div.product { grid-template-columns: 1fr; }
  .dk-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .admin-bar .dk-site-header { top: 0; }
  .dk-container { width: min(100% - 24px, var(--dk-container)); }
  .dk-hero { padding-top: 34px; }
  .dk-main-nav a { padding: 8px 10px; font-size: 13px; }
  .dk-category-grid,
  ul.products { grid-template-columns: 1fr; }
  .woocommerce div.product .woocommerce-tabs ul.tabs { flex-wrap: wrap; }
}
.woocommerce .products,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
  content: none;
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
}

.woocommerce-result-count {
  margin-bottom: 24px;
}

.woocommerce-ordering {
  margin-bottom: 24px;
}

@media (max-width: 1100px) {
  .woocommerce .products,
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 480px) {
  .woocommerce .products,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

/* DK HOME/SHOP POLISH START */
.dk-front {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.dk-hero {
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 34px;
  background: linear-gradient(135deg, #fff7ea 0%, #f2d6aa 100%);
  box-shadow: 0 24px 80px rgba(53, 31, 15, .10);
  padding: clamp(36px, 6vw, 72px);
  margin-bottom: 76px;
}

.dk-hero__content {
  max-width: 740px;
}

.dk-eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 900;
  color: #7a4a1f;
}

.dk-hero h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.055em;
}

.dk-hero__text {
  margin: 24px 0 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(31, 20, 14, .70);
}

.dk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.dk-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px !important;
  border: 0 !important;
  padding: 0 22px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  cursor: pointer;
}

.dk-btn--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: #1e110b !important;
  color: #fff !important;
}

.dk-btn--light {
  background: #fff !important;
  color: #1e110b !important;
  box-shadow: inset 0 0 0 1px rgba(31, 20, 14, .10);
}

.dk-section {
  margin-top: 72px;
}

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

.dk-section__head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -.04em;
}

.dk-section__head a {
  color: #7a4a1f;
  font-weight: 900;
  text-decoration: underline;
}

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

.dk-category-card {
  overflow: hidden;
  border: 1px solid rgba(105, 69, 37, .16);
  border-radius: 22px;
  background: #fffaf2;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(53, 31, 15, .05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.dk-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(53, 31, 15, .10);
}

.dk-category-card__image {
  display: block;
  height: 150px;
  background-color: #f3eadc;
  background-position: center;
  background-size: cover;
}

.dk-category-card__body {
  display: block;
  padding: 18px;
}

.dk-category-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.dk-category-card small {
  display: block;
  margin-top: 8px;
  color: rgba(31, 20, 14, .62);
  font-weight: 800;
}

.dk-product-grid,
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.dk-product-card,
.woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden;
  border: 1px solid rgba(105, 69, 37, .16);
  border-radius: 22px;
  background: #fffaf2;
  box-shadow: 0 14px 40px rgba(53, 31, 15, .06);
}

.dk-product-card__image,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: block;
  text-decoration: none;
}

.dk-product-card__image img,
.woocommerce ul.products li.product img {
  width: 100% !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 !important;
  background: #fff;
}

.dk-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.dk-product-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 12px !important;
  padding: 0 !important;
  font-size: 17px !important;
  line-height: 1.22 !important;
  letter-spacing: -.02em;
  color: #1e110b;
}

.dk-product-card h3 a,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: #1e110b !important;
  text-decoration: none !important;
}

.dk-product-card__price,
.woocommerce ul.products li.product .price {
  display: block !important;
  margin: auto 0 16px !important;
  color: #7a4a1f !important;
  font-size: 17px !important;
  font-weight: 900 !important;
}

.dk-product-card__button,
.woocommerce ul.products li.product .button {
  width: fit-content;
  margin-top: 0 !important;
}

.woocommerce-ordering select {
  min-height: 48px;
  border: 1px solid rgba(105, 69, 37, .18);
  border-radius: 14px;
  background: #fffaf2;
  padding: 0 16px;
}

.woocommerce-result-count {
  font-weight: 800;
  color: rgba(31, 20, 14, .70);
}

@media (max-width: 1024px) {
  .dk-category-grid,
  .dk-product-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .dk-front {
    padding: 40px 16px 72px;
  }

  .dk-hero {
    border-radius: 26px;
    margin-bottom: 52px;
  }

  .dk-section__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .dk-category-grid,
  .dk-product-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .dk-category-card__image {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .dk-category-grid,
  .dk-product-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }
}
/* DK HOME/SHOP POLISH END */

/* DK PRODUCT/CART/CHECKOUT POLISH START */
.woocommerce div.product {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 48px;
}

.woocommerce div.product div.images {
  width: 48% !important;
}

.woocommerce div.product div.summary {
  width: 46% !important;
  padding-top: 8px;
}

.woocommerce div.product div.images img {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(105, 69, 37, .14);
  object-fit: contain;
}

.woocommerce div.product .product_title {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.045em;
  color: #1e110b;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin: 0 0 22px;
  color: #7a4a1f;
  font-size: 28px;
  font-weight: 900;
}

.woocommerce-product-details__short-description {
  margin: 0 0 24px;
  color: rgba(31, 20, 14, .72);
  font-size: 17px;
  line-height: 1.6;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 26px 0 24px;
}

.woocommerce .quantity .qty {
  width: 86px;
  min-height: 46px;
  border: 1px solid rgba(105, 69, 37, .18);
  border-radius: 14px;
  background: #fffaf2;
  color: #1e110b;
  font-weight: 800;
  text-align: center;
}

.woocommerce div.product .stock {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  border-radius: 999px;
  background: #eefbf3;
  padding: 8px 12px;
  color: #08703e;
  font-weight: 800;
}

.product_meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(105, 69, 37, .14);
  color: rgba(31, 20, 14, .68);
  font-size: 14px;
}

.product_meta a {
  color: #7a4a1f;
  font-weight: 800;
}

.woocommerce-tabs {
  clear: both;
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 0 24px 72px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  border: 1px solid rgba(105, 69, 37, .16);
  border-radius: 999px;
  background: #fffaf2;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #1e110b;
  border-color: #1e110b;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 12px 18px;
  color: #1e110b;
  font-weight: 900;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #fff;
}

.woocommerce-Tabs-panel {
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 24px;
  background: #fffaf2;
  padding: 28px;
  color: rgba(31, 20, 14, .76);
  line-height: 1.7;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.woocommerce-cart h1,
.woocommerce-checkout h1,
.woocommerce-account h1,
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-account .entry-title {
  margin: 0 0 28px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.045em;
}

.woocommerce table.shop_table {
  overflow: hidden;
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 22px;
  background: #fffaf2;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: rgba(105, 69, 37, .12);
  padding: 16px;
}

.woocommerce-cart table.cart img {
  width: 86px;
  border-radius: 14px;
  background: #fff;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  width: 420px;
  max-width: 100%;
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 24px;
  background: #fffaf2;
  padding: 24px;
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
  margin-top: 0;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 46px;
  border: 1px solid rgba(105, 69, 37, .18);
  border-radius: 14px;
  background: #fffaf2;
  padding: 10px 14px;
  color: #1e110b;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  margin-top: 24px;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 24px;
  background: #fffaf2;
  padding: 24px;
}

.woocommerce-checkout-review-order {
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 24px;
  background: #fffaf2;
  padding: 24px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  max-width: 1180px;
  margin: 24px auto !important;
  border-radius: 18px;
  border-top: 0;
  background: #fffaf2;
  box-shadow: inset 0 0 0 1px rgba(105, 69, 37, .14);
}

@media (max-width: 900px) {
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    float: none !important;
    width: 100% !important;
  }

  .woocommerce-checkout .col2-set .col-1,
  .woocommerce-checkout .col2-set .col-2 {
    float: none;
    width: 100%;
    margin-bottom: 18px;
  }
}

@media (max-width: 560px) {
  .woocommerce div.product,
  .woocommerce-tabs,
  .woocommerce-cart .entry-content,
  .woocommerce-checkout .entry-content,
  .woocommerce-account .entry-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .woocommerce div.product form.cart {
    align-items: stretch;
    flex-direction: column;
  }

  .woocommerce .quantity .qty,
  .woocommerce div.product form.cart .button {
    width: 100%;
  }
}
/* DK PRODUCT/CART/CHECKOUT POLISH END */

/* DK SINGLE PRODUCT LAYOUT FIX START */
body.single-product .woocommerce div.product {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 72px 24px 96px !important;
  display: grid !important;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr) !important;
  gap: clamp(40px, 7vw, 96px) !important;
  align-items: start !important;
}

body.single-product .woocommerce div.product div.images,
body.single-product .woocommerce div.product div.summary {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.single-product .woocommerce div.product div.images {
  grid-column: 1 !important;
}

body.single-product .woocommerce div.product div.summary {
  grid-column: 2 !important;
  min-width: 0 !important;
}

body.single-product .woocommerce div.product .product_title {
  max-width: 760px !important;
  margin: 0 0 18px !important;
  font-size: clamp(34px, 4.2vw, 58px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

body.single-product .woocommerce div.product p.price,
body.single-product .woocommerce div.product span.price {
  margin: 0 0 22px !important;
  font-size: 28px !important;
  line-height: 1.1 !important;
}

body.single-product .woocommerce-product-details__short-description {
  max-width: 620px !important;
  font-size: 17px !important;
  line-height: 1.62 !important;
}

body.single-product .woocommerce div.product form.cart {
  max-width: 620px !important;
}

body.single-product .woocommerce div.product .product_meta {
  max-width: 620px !important;
}

body.single-product .woocommerce div.product div.images img {
  width: 100% !important;
  height: auto !important;
  max-height: 560px !important;
  object-fit: contain !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 1180px !important;
  padding: 0 !important;
  margin-top: 28px !important;
}

body.single-product .related.products,
body.single-product .upsells.products {
  grid-column: 1 / -1 !important;
}

@media (max-width: 900px) {
  body.single-product .woocommerce div.product {
    display: block !important;
    padding: 40px 18px 72px !important;
  }

  body.single-product .woocommerce div.product div.images {
    margin-bottom: 28px !important;
  }

  body.single-product .woocommerce div.product .product_title {
    font-size: clamp(32px, 9vw, 48px) !important;
  }
}
/* DK SINGLE PRODUCT LAYOUT FIX END */

/* DK SINGLE PRODUCT HARD FIX START */
body.single-product .site-main,
body.single-product #primary,
body.single-product .content-area {
  max-width: 1180px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.single-product div.product.type-product {
  max-width: 1180px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 72px 24px 96px !important;
  display: grid !important;
  grid-template-columns: minmax(300px, 430px) minmax(560px, 1fr) !important;
  column-gap: clamp(48px, 7vw, 96px) !important;
  row-gap: 40px !important;
  align-items: start !important;
}

body.single-product div.product.type-product::before,
body.single-product div.product.type-product::after {
  display: none !important;
  content: none !important;
}

body.single-product div.product.type-product div.images,
body.single-product div.product.type-product .woocommerce-product-gallery {
  grid-column: 1 !important;
  float: none !important;
  width: 100% !important;
  max-width: 430px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.single-product div.product.type-product div.summary,
body.single-product div.product.type-product .summary.entry-summary {
  grid-column: 2 !important;
  float: none !important;
  width: 100% !important;
  max-width: 680px !important;
  min-width: 560px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.single-product div.product.type-product .summary.entry-summary .product_title,
body.single-product div.product.type-product h1.product_title {
  display: block !important;
  width: 100% !important;
  max-width: 680px !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  font-size: clamp(32px, 3.1vw, 46px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.035em !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
}

body.single-product div.product.type-product p.price,
body.single-product div.product.type-product span.price {
  margin: 0 0 22px !important;
  color: #7a4a1f !important;
  font-size: 28px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

body.single-product div.product.type-product .woocommerce-product-details__short-description {
  width: 100% !important;
  max-width: 640px !important;
  font-size: 17px !important;
  line-height: 1.62 !important;
}

body.single-product div.product.type-product form.cart,
body.single-product div.product.type-product .product_meta {
  width: 100% !important;
  max-width: 640px !important;
}

body.single-product div.product.type-product div.images img,
body.single-product div.product.type-product .woocommerce-product-gallery img {
  width: 100% !important;
  height: auto !important;
  max-height: 560px !important;
  object-fit: contain !important;
  border-radius: 24px !important;
}

body.single-product div.product.type-product .woocommerce-tabs {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 40px 0 0 !important;
  padding: 0 !important;
}

body.single-product div.product.type-product .related.products,
body.single-product div.product.type-product .upsells.products {
  grid-column: 1 / -1 !important;
}

@media (max-width: 1024px) {
  body.single-product div.product.type-product {
    grid-template-columns: minmax(280px, 400px) minmax(420px, 1fr) !important;
    column-gap: 40px !important;
  }

  body.single-product div.product.type-product div.summary,
  body.single-product div.product.type-product .summary.entry-summary {
    min-width: 420px !important;
  }
}

@media (max-width: 820px) {
  body.single-product div.product.type-product {
    display: block !important;
    padding: 40px 18px 72px !important;
  }

  body.single-product div.product.type-product div.images,
  body.single-product div.product.type-product .woocommerce-product-gallery,
  body.single-product div.product.type-product div.summary,
  body.single-product div.product.type-product .summary.entry-summary {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  body.single-product div.product.type-product div.images {
    margin-bottom: 28px !important;
  }

  body.single-product div.product.type-product .summary.entry-summary .product_title,
  body.single-product div.product.type-product h1.product_title {
    font-size: clamp(30px, 8vw, 44px) !important;
  }
}
/* DK SINGLE PRODUCT HARD FIX END */






/* DK WC BLOCKS CART CHECKOUT START */

/* Shared cart / checkout block layout */
body.woocommerce-cart .entry-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .wp-block-woocommerce-cart,
body.woocommerce-checkout .wp-block-woocommerce-checkout {
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.woocommerce-cart .wp-block-woocommerce-cart,
body.woocommerce-checkout .wp-block-woocommerce-checkout {
  padding: 48px 24px 96px !important;
}

body.woocommerce-cart .entry-title,
body.woocommerce-checkout .entry-title,
body.woocommerce-cart h1,
body.woocommerce-checkout h1 {
  max-width: 1180px !important;
  margin: 56px auto 28px !important;
  padding: 0 24px !important;
  font-size: clamp(42px, 5vw, 68px) !important;
  line-height: .95 !important;
  letter-spacing: -.055em !important;
  color: #1e110b !important;
}

/* Woo Blocks cards */
.wc-block-cart,
.wc-block-checkout {
  color: #1e110b !important;
}

.wc-block-components-sidebar,
.wc-block-cart__sidebar,
.wc-block-checkout__sidebar {
  border: 1px solid rgba(105, 69, 37, .14) !important;
  border-radius: 24px !important;
  background: #fffaf2 !important;
  padding: 24px !important;
  box-shadow: 0 14px 40px rgba(53, 31, 15, .05) !important;
}

.wc-block-cart-items,
.wc-block-components-totals-wrapper,
.wc-block-components-panel,
.wc-block-components-checkout-step,
.wc-block-components-order-summary,
.wc-block-components-order-summary-item,
.wc-block-components-form .wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  border-color: rgba(105, 69, 37, .14) !important;
}

.wc-block-cart-items {
  border-top: 1px solid rgba(105, 69, 37, .14) !important;
}

.wc-block-cart-items__row {
  border-bottom: 1px solid rgba(105, 69, 37, .14) !important;
  padding: 24px 0 !important;
}

.wc-block-cart-item__image img,
.wc-block-components-order-summary-item__image img {
  border-radius: 14px !important;
  background: #fff !important;
}

.wc-block-cart-item__product,
.wc-block-components-order-summary-item__description {
  font-weight: 700 !important;
}

.wc-block-cart-item__product a,
.wc-block-components-order-summary-item__description a {
  color: #1e110b !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px !important;
}

.wc-block-cart-item__prices,
.wc-block-cart-item__total,
.wc-block-components-totals-item__value,
.wc-block-components-product-price {
  color: #7a4a1f !important;
  font-weight: 900 !important;
}

/* Quantity controls */
.wc-block-components-quantity-selector {
  min-height: 48px !important;
  border: 1px solid rgba(105, 69, 37, .18) !important;
  border-radius: 14px !important;
  background: #fffaf2 !important;
  overflow: hidden !important;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  font-weight: 900 !important;
  color: #1e110b !important;
}

.wc-block-components-quantity-selector button {
  color: #1e110b !important;
}

/* Buttons */
.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  min-height: 52px !important;
  border-radius: 999px !important;
  background: #1e110b !important;
  color: #fff !important;
  border: 0 !important;
  padding: 0 26px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: #3a2115 !important;
  color: #fff !important;
}

/* Inputs */
.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-country-input input,
.wc-block-components-state-input input {
  min-height: 48px !important;
  border-radius: 14px !important;
  background: #fffaf2 !important;
  color: #1e110b !important;
  box-shadow: none !important;
}

.wc-block-components-text-input label,
.wc-block-components-checkbox label,
.wc-block-components-radio-control__label,
.wc-block-components-title {
  color: #1e110b !important;
}

.wc-block-components-checkout-step__title,
.wc-block-components-sidebar-layout h2,
.wc-block-components-order-summary__button-text {
  font-weight: 900 !important;
  color: #1e110b !important;
}

/* Shipping/payment option cards */
.wc-block-components-radio-control__option,
.wc-block-components-shipping-rates-control__package,
.wc-block-components-totals-coupon,
.wc-block-components-totals-shipping,
.wc-block-components-totals-item {
  border-color: rgba(105, 69, 37, .14) !important;
}

.wc-block-components-radio-control__option {
  border-radius: 16px !important;
  background: #fffaf2 !important;
}

.wc-block-components-radio-control__option-checked {
  box-shadow: inset 0 0 0 2px #1e110b !important;
}

/* Coupon/details panels */
.wc-block-components-panel__button,
.wc-block-components-totals-coupon-link {
  color: #7a4a1f !important;
  font-weight: 900 !important;
}

/* Mobile */
@media (max-width: 782px) {
  body.woocommerce-cart .wp-block-woocommerce-cart,
  body.woocommerce-checkout .wp-block-woocommerce-checkout {
    padding: 32px 16px 72px !important;
  }

  body.woocommerce-cart .entry-title,
  body.woocommerce-checkout .entry-title,
  body.woocommerce-cart h1,
  body.woocommerce-checkout h1 {
    margin-top: 36px !important;
    padding: 0 16px !important;
  }

  .wc-block-components-sidebar,
  .wc-block-cart__sidebar,
  .wc-block-checkout__sidebar {
    padding: 18px !important;
  }
}

/* DK WC BLOCKS CART CHECKOUT END */

/* DK TABS CLEAN FINAL START */

/* Tabs wrapper */
body.single-product .woocommerce-tabs ul.tabs,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: visible !important;
}

body.single-product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce-tabs ul.tabs::after,
body.single-product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce-tabs ul.tabs li::after,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs::after,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
  content: none !important;
}

/* All tabs */
body.single-product .woocommerce-tabs ul.tabs li,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li,
body.single-product .woocommerce-tabs ul.tabs li.description_tab,
body.single-product .woocommerce-tabs ul.tabs li.additional_information_tab,
body.single-product .woocommerce-tabs ul.tabs li.reviews_tab {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(105, 69, 37, .16) !important;
  border-radius: 999px !important;
  background: #fffaf2 !important;
  box-shadow: none !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* All tab links, including active/hover/focus */
body.single-product .woocommerce-tabs ul.tabs li a,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a,
body.single-product .woocommerce-tabs ul.tabs li.active a,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
body.single-product .woocommerce-tabs ul.tabs li a:hover,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
body.single-product .woocommerce-tabs ul.tabs li a:focus,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a:focus {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 20px !important;
  color: #1e110b !important;
  background: transparent !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-indent: 0 !important;
  text-shadow: none !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Active tab */
body.single-product .woocommerce-tabs ul.tabs li.active,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active,
body.single-product .woocommerce-tabs ul.tabs li.description_tab.active,
body.single-product .woocommerce-tabs ul.tabs li.additional_information_tab.active,
body.single-product .woocommerce-tabs ul.tabs li.reviews_tab.active {
  background: #1e110b !important;
  border-color: #1e110b !important;
}

body.single-product .woocommerce-tabs ul.tabs li.active a,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #fff !important;
}

/* Related products: keep them visible and card-based */
body.single-product .related.products,
body.single-product section.related.products {
  display: block !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 56px auto 0 !important;
  padding: 0 !important;
}

body.single-product .related.products > h2,
body.single-product section.related.products > h2 {
  margin: 0 0 24px !important;
  font-size: clamp(28px, 3.2vw, 42px) !important;
  line-height: 1 !important;
  letter-spacing: -.035em !important;
  color: #1e110b !important;
}

body.single-product .related.products ul.products,
body.single-product section.related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.single-product .related.products ul.products li.product,
body.single-product section.related.products ul.products li.product {
  float: none !important;
  clear: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border: 1px solid rgba(105, 69, 37, .16) !important;
  border-radius: 22px !important;
  background: #fffaf2 !important;
  box-shadow: 0 14px 40px rgba(53, 31, 15, .06) !important;
}

body.single-product .related.products ul.products li.product img,
body.single-product section.related.products ul.products li.product img {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  margin: 0 !important;
  background: #fff !important;
}

body.single-product .related.products ul.products li.product .woocommerce-loop-product__title,
body.single-product section.related.products ul.products li.product .woocommerce-loop-product__title {
  margin: 0 !important;
  padding: 18px 18px 10px !important;
  font-size: 16px !important;
  line-height: 1.22 !important;
  letter-spacing: -.02em !important;
  color: #1e110b !important;
  text-decoration: none !important;
}

body.single-product .related.products ul.products li.product .price,
body.single-product section.related.products ul.products li.product .price {
  display: block !important;
  margin: auto 18px 14px !important;
  color: #7a4a1f !important;
  font-size: 17px !important;
  font-weight: 900 !important;
}

body.single-product .related.products ul.products li.product .button,
body.single-product section.related.products ul.products li.product .button {
  width: fit-content !important;
  margin: 0 18px 18px !important;
}

@media (max-width: 1024px) {
  body.single-product .related.products ul.products,
  body.single-product section.related.products ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body.single-product .related.products ul.products,
  body.single-product section.related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  body.single-product .related.products ul.products,
  body.single-product section.related.products ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* DK TABS CLEAN FINAL END */

/* DK HOME EXTRA SECTIONS CSS START */
.dk-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dk-benefit-card {
  border: 1px solid rgba(105, 69, 37, .16);
  border-radius: 22px;
  background: #fffaf2;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(53, 31, 15, .05);
}

.dk-benefit-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #7a4a1f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.dk-benefit-card h3 {
  margin: 0 0 12px;
  color: #1e110b;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.dk-benefit-card p {
  margin: 0;
  color: rgba(31, 20, 14, .68);
  font-size: 15px;
  line-height: 1.55;
}

.dk-split-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.dk-split-cta__card {
  border: 1px solid rgba(105, 69, 37, .16);
  border-radius: 30px;
  background: linear-gradient(135deg, #fffaf2 0%, #f3dfbd 100%);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 18px 60px rgba(53, 31, 15, .08);
}

.dk-split-cta__card--dark {
  background: #1e110b;
  color: #fff;
}

.dk-split-cta__card h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.045em;
}

.dk-split-cta__card p:not(.dk-eyebrow) {
  max-width: 560px;
  margin: 20px 0 26px;
  color: rgba(31, 20, 14, .70);
  font-size: 17px;
  line-height: 1.58;
}

.dk-split-cta__card--dark p:not(.dk-eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.dk-split-cta__card--dark .dk-eyebrow {
  color: #f2d6aa;
}

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

@media (max-width: 760px) {
  .dk-benefits,
  .dk-split-cta {
    grid-template-columns: 1fr;
  }

  .dk-benefit-card {
    padding: 20px;
  }
}
/* DK HOME EXTRA SECTIONS CSS END */

/* DK HERO COMPACT AND MEDIA BLOG START */

/* Make hero less dominant */
.dk-front {
  padding-top: 44px !important;
}

.dk-hero {
  max-width: 1040px !important;
  margin: 0 auto 52px !important;
  padding: clamp(30px, 4.2vw, 52px) !important;
  border-radius: 28px !important;
}

.dk-hero__content {
  max-width: 640px !important;
}

.dk-hero h1 {
  max-width: 680px !important;
  font-size: clamp(38px, 5vw, 62px) !important;
  line-height: .96 !important;
  letter-spacing: -.052em !important;
}

.dk-hero__text {
  max-width: 560px !important;
  margin-top: 18px !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.dk-hero__actions {
  margin-top: 22px !important;
}

.dk-section {
  margin-top: 56px !important;
}

/* YouTube + Blog */
.dk-media-blog {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
}

.dk-section__head--compact {
  align-items: flex-end;
  margin-bottom: 18px;
}

.dk-section__head--compact .dk-eyebrow {
  margin-bottom: 10px;
}

.dk-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dk-video-card,
.dk-blog-card,
.dk-blog-empty {
  overflow: hidden;
  border: 1px solid rgba(105, 69, 37, .16);
  border-radius: 24px;
  background: #fffaf2;
  box-shadow: 0 14px 40px rgba(53, 31, 15, .06);
}

.dk-video-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 180px;
}

.dk-video-card__thumb {
  position: relative;
  min-height: 180px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.55), transparent 32%),
    linear-gradient(135deg, #7a4a1f 0%, #1e110b 100%);
}

.dk-video-card__thumb--alt {
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.45), transparent 32%),
    linear-gradient(135deg, #b9803a 0%, #3a2115 100%);
}

.dk-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #fffaf2;
  color: #1e110b;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

.dk-video-card__body,
.dk-blog-card__body,
.dk-blog-empty {
  padding: 24px;
}

.dk-video-card h3,
.dk-blog-card h3,
.dk-blog-empty h3 {
  margin: 0 0 10px;
  color: #1e110b;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.dk-video-card p,
.dk-blog-card p,
.dk-blog-empty p {
  margin: 0;
  color: rgba(31, 20, 14, .68);
  font-size: 15px;
  line-height: 1.58;
}

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

.dk-blog-card {
  display: flex;
  flex-direction: column;
}

.dk-blog-card__image {
  display: block;
  background: #fff;
}

.dk-blog-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.dk-blog-card h3 a {
  color: #1e110b;
  text-decoration: none;
}

.dk-text-link {
  display: inline-flex;
  margin-top: 16px;
  color: #7a4a1f;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .dk-hero {
    max-width: none !important;
  }

  .dk-video-card {
    grid-template-columns: 1fr;
  }

  .dk-video-card__thumb {
    min-height: 190px;
  }

  .dk-blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dk-front {
    padding-top: 28px !important;
  }

  .dk-hero {
    margin-bottom: 42px !important;
    padding: 30px 24px !important;
  }

  .dk-hero h1 {
    font-size: clamp(34px, 11vw, 48px) !important;
  }

  .dk-video-grid {
    grid-template-columns: 1fr;
  }
}

/* DK HERO COMPACT AND MEDIA BLOG END */

/* DK HERO FINAL COMPACT START */
body.home .dk-front {
  padding-top: 34px !important;
}

body.home .dk-hero {
  max-width: 960px !important;
  margin: 0 auto 44px !important;
  padding: 34px 42px !important;
  border-radius: 24px !important;
  min-height: 0 !important;
}

body.home .dk-hero__content {
  max-width: 620px !important;
}

body.home .dk-hero h1 {
  max-width: 620px !important;
  font-size: clamp(34px, 4.2vw, 54px) !important;
  line-height: .98 !important;
  letter-spacing: -.05em !important;
  margin-bottom: 14px !important;
}

body.home .dk-hero__text {
  max-width: 520px !important;
  margin-top: 0 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

body.home .dk-hero__actions {
  margin-top: 18px !important;
}

body.home .dk-section {
  margin-top: 48px !important;
}

@media (max-width: 760px) {
  body.home .dk-front {
    padding-top: 24px !important;
  }

  body.home .dk-hero {
    margin-bottom: 34px !important;
    padding: 28px 22px !important;
  }

  body.home .dk-hero h1 {
    font-size: clamp(30px, 10vw, 44px) !important;
  }
}
/* DK HERO FINAL COMPACT END */

/* DK CONTENT PAGES START */
body.page .dk-main {
  padding: 58px 0 92px;
}

body.page .dk-main .dk-container {
  max-width: 1120px;
}

body.page .entry-title {
  max-width: 820px;
  margin: 0 0 28px;
  color: #1e110b;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .96;
  letter-spacing: -.055em;
}

body.page .entry-content {
  max-width: 1120px;
  color: #1e110b;
  font-size: 17px;
  line-height: 1.65;
}

body.page .entry-content p {
  max-width: 900px;
}

.dk-page-intro {
  max-width: 920px;
  margin: 0 0 32px;
}

.dk-page-intro p {
  margin: 0;
  color: rgba(31, 20, 14, .72);
  font-size: 18px;
  line-height: 1.65;
}

.dk-info-columns {
  gap: 24px;
  margin: 34px 0 28px;
}

.dk-info-columns > .wp-block-column,
.dk-note-box {
  border: 1px solid rgba(105, 69, 37, .16);
  border-radius: 24px;
  background: #fffaf2;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(53, 31, 15, .05);
}

.dk-info-columns h2,
.dk-note-box h2 {
  margin: 0 0 16px;
  color: #1e110b;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.dk-info-columns ul {
  margin: 0;
  padding-left: 20px;
}

.dk-info-columns li + li {
  margin-top: 9px;
}

.dk-note-box {
  max-width: 1120px;
  margin-top: 24px;
  background: linear-gradient(135deg, #fffaf2 0%, #f3dfbd 100%);
}

.dk-note-box p {
  margin: 0;
  color: rgba(31, 20, 14, .72);
}

@media (max-width: 760px) {
  body.page .dk-main {
    padding: 38px 0 72px;
  }

  .dk-info-columns {
    display: block;
  }

  .dk-info-columns > .wp-block-column + .wp-block-column {
    margin-top: 18px;
  }

  .dk-info-columns > .wp-block-column,
  .dk-note-box {
    padding: 22px;
  }
}
/* DK CONTENT PAGES END */

/* DK HOME DROPSHIPPING CSS START */
.dk-dropship-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .85fr);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(105, 69, 37, .16);
  border-radius: 28px;
  background: #1e110b;
  color: #fffaf2;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 18px 60px rgba(53, 31, 15, .12);
}

.dk-dropship-cta__content h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1;
  letter-spacing: -.045em;
}

.dk-dropship-cta__content p:not(.dk-eyebrow) {
  max-width: 740px;
  margin: 18px 0 0;
  color: rgba(255, 250, 242, .76);
  font-size: 17px;
  line-height: 1.6;
}

.dk-dropship-cta .dk-eyebrow {
  color: #f2d6aa;
}

.dk-dropship-cta__points {
  display: grid;
  gap: 10px;
}

.dk-dropship-cta__points span {
  display: flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 250, 242, .14);
  border-radius: 999px;
  background: rgba(255, 250, 242, .08);
  padding: 0 16px;
  color: #fffaf2;
  font-size: 14px;
  font-weight: 900;
}

.dk-dropship-cta__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.dk-dropship-cta .dk-btn--light {
  background: #fffaf2 !important;
  color: #1e110b !important;
}

@media (max-width: 860px) {
  .dk-dropship-cta {
    grid-template-columns: 1fr;
  }
}
/* DK HOME DROPSHIPPING CSS END */

/* DK WHOLESALE CATALOG START */
.dk-wholesale-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.dk-wholesale-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(105, 69, 37, .16);
  border-radius: 24px;
  background: #fffaf2;
  box-shadow: 0 14px 40px rgba(53, 31, 15, .05);
}

.dk-wholesale-card__image {
  display: block;
  background: #fff;
}

.dk-wholesale-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.dk-wholesale-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.dk-wholesale-card h3 {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.dk-wholesale-card h3 a {
  color: #1e110b;
  text-decoration: none;
}

.dk-wholesale-card__prices {
  display: grid;
  gap: 6px;
  margin-top: auto;
  color: rgba(31, 20, 14, .72);
  font-size: 14px;
}

.dk-wholesale-card__prices strong {
  color: #7a4a1f;
  font-size: 18px;
  font-weight: 950;
}

.dk-wholesale-card__stock {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  border-radius: 999px;
  background: #e8fff2;
  padding: 6px 10px;
  color: #007a3d;
  font-size: 13px;
  font-weight: 900;
}

.dk-wholesale-card__button {
  margin-top: 14px;
  width: 100%;
}

.dk-wholesale-empty {
  border: 1px solid rgba(105, 69, 37, .16);
  border-radius: 24px;
  background: #fffaf2;
  padding: 28px;
}

@media (max-width: 980px) {
  .dk-wholesale-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .dk-wholesale-catalog {
    grid-template-columns: 1fr;
  }
}
/* DK WHOLESALE CATALOG END */

/* DK HERO A VISUAL START */
body.home .dk-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .78fr) !important;
  align-items: center !important;
  gap: clamp(24px, 4vw, 44px) !important;
  max-width: 1120px !important;
  padding: 34px 42px !important;
}

body.home .dk-hero__content {
  max-width: 660px !important;
}

body.home .dk-hero h1 {
  max-width: 660px !important;
}

.dk-hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dk-hero-visual {
  width: 100%;
  max-width: 390px;
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 12%, rgba(242, 214, 170, .72), transparent 38%),
    rgba(255, 250, 242, .66);
  padding: 20px;
  box-shadow: 0 18px 52px rgba(53, 31, 15, .10);
}

.dk-hero-visual__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 14px;
  color: #1e110b;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.dk-hero-visual__brand img {
  display: block;
  max-width: 170px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.dk-hero-visual__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #1e110b;
  color: #fffaf2;
  font-size: 16px;
  font-weight: 950;
}

.dk-hero-visual__product {
  display: block;
  color: #1e110b;
  text-decoration: none;
}

.dk-hero-visual__product img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #fff;
  border-radius: 20px;
}

.dk-hero-visual__product span {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 12px;
  color: #1e110b;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -.03em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.dk-hero-visual__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.dk-hero-visual__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(31, 17, 11, .08);
  padding: 0 10px;
  color: #7a4a1f;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 860px) {
  body.home .dk-hero {
    grid-template-columns: 1fr !important;
    padding: 28px 22px !important;
  }

  .dk-hero__media {
    justify-content: flex-start;
  }

  .dk-hero-visual {
    max-width: 100%;
  }

  .dk-hero-visual__product img {
    height: 220px;
  }
}
/* DK HERO A VISUAL END */





/* DK BRAND HEADER START */
.dk-site-header {
  background: rgba(255, 250, 242, .92);
  backdrop-filter: blur(10px);
}

.dk-header-inner {
  min-height: 72px;
  align-items: center;
}

.dk-logo.dk-logo--brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  color: #1e110b !important;
  flex: 0 0 auto;
}

.dk-logo__icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  line-height: 0 !important;
  transform: translateY(0);
}

.dk-logo__icon img {
  display: block !important;
  width: 46px !important;
  height: 46px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.dk-logo__wordmark {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.055em;
}

.dk-logo__wordmark-main {
  color: #1e110b;
}

.dk-logo__wordmark-accent {
  color: #a8662b;
}

.dk-main-nav {
  align-items: center;
}

body.home .dk-hero {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}

body.home .dk-hero-visual {
  padding-top: 18px !important;
}

body.home .dk-hero-visual__product img {
  height: 255px !important;
}

body.home .dk-hero-visual__product span {
  margin-top: 14px !important;
}

@media (max-width: 760px) {
  .dk-header-inner {
    min-height: auto;
  }

  .dk-logo__icon,
  .dk-logo__icon img {
    width: 40px !important;
    height: 40px !important;
  }

  .dk-logo__wordmark {
    font-size: 22px;
  }

  body.home .dk-hero-visual__product img {
    height: 220px !important;
  }
}
/* DK BRAND HEADER END */

/* DK HOME POLISH NEXT START */
body.home .dk-section {
  margin-top: clamp(54px, 7vw, 82px);
}

body.home .dk-section-head {
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}

body.home .dk-section-head h2 {
  margin: 0;
  letter-spacing: -.055em;
}

.dk-section-head--compact {
  max-width: 780px;
}

.dk-section-kicker {
  margin: 0 0 10px;
  color: #9a5b22;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Categories */
body.home .dk-category-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

body.home .dk-category-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 252px !important;
  border: 1px solid rgba(105, 69, 37, .14) !important;
  border-radius: 22px !important;
  background: rgba(255, 250, 242, .78) !important;
  padding: 16px !important;
  color: #1e110b !important;
  text-decoration: none !important;
  box-shadow: 0 14px 36px rgba(53, 31, 15, .055) !important;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease !important;
}

body.home .dk-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(154, 91, 34, .34) !important;
  background: #fffaf2 !important;
  box-shadow: 0 22px 56px rgba(53, 31, 15, .10) !important;
}

body.home .dk-category-card__image {
  display: block !important;
  width: 100% !important;
  height: 140px !important;
  margin-bottom: 16px !important;
  border-radius: 16px !important;
  background-color: #fff !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

body.home .dk-category-card h3 {
  margin: 0 0 8px !important;
  color: #1e110b !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
}

body.home .dk-category-card p,
body.home .dk-category-card span {
  margin: 0 !important;
  color: rgba(31, 17, 11, .68) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

/* Trust block */
.dk-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dk-trust-card {
  min-height: 210px;
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 24px;
  background: rgba(255, 250, 242, .72);
  padding: 24px;
  box-shadow: 0 14px 38px rgba(53, 31, 15, .055);
}

.dk-trust-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(154, 91, 34, .11);
  color: #9a5b22;
  font-size: 13px;
  font-weight: 950;
}

.dk-trust-card h3 {
  margin: 0 0 10px;
  color: #1e110b;
  font-size: 23px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.dk-trust-card p {
  margin: 0;
  color: rgba(31, 17, 11, .72);
  font-size: 16px;
  line-height: 1.55;
}

/* Maker block */
.dk-maker-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  border: 1px solid rgba(154, 91, 34, .24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 12%, rgba(242, 214, 170, .72), transparent 36%),
    linear-gradient(135deg, rgba(255, 250, 242, .96), rgba(246, 219, 176, .72));
  padding: clamp(26px, 4vw, 38px);
  box-shadow: 0 24px 64px rgba(53, 31, 15, .09);
}

.dk-maker-card h2 {
  max-width: 720px;
  margin: 0 0 14px;
  color: #1e110b;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.06em;
}

.dk-maker-card p {
  max-width: 820px;
  margin: 0;
  color: rgba(31, 17, 11, .72);
  font-size: 17px;
  line-height: 1.55;
}

.dk-maker-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 980px) {
  body.home .dk-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .dk-trust-grid {
    grid-template-columns: 1fr;
  }

  .dk-maker-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dk-maker-card__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body.home .dk-section {
    margin-top: 46px;
  }

  body.home .dk-category-grid {
    grid-template-columns: 1fr !important;
  }

  body.home .dk-category-card {
    min-height: auto !important;
  }

  body.home .dk-category-card__image {
    height: 160px !important;
  }

  .dk-trust-card {
    min-height: auto;
    padding: 22px;
  }

  .dk-maker-card {
    border-radius: 24px;
    padding: 24px 20px;
  }

  .dk-maker-card__actions .dk-btn {
    width: 100%;
    justify-content: center;
  }
}
/* DK HOME POLISH NEXT END */

/* DK WHOLESALE CATALOG STYLE START */
.dk-wholesale-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.dk-wholesale-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 24px;
  background: rgba(255, 250, 242, .82);
  box-shadow: 0 14px 38px rgba(53, 31, 15, .055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.dk-wholesale-card:hover {
  transform: translateY(-4px);
  border-color: rgba(154, 91, 34, .34);
  box-shadow: 0 22px 56px rgba(53, 31, 15, .10);
}

.dk-wholesale-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
  padding: 16px;
  background: #fff;
  text-decoration: none;
}

.dk-wholesale-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dk-wholesale-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px;
}

.dk-wholesale-card h3 {
  margin: 0 0 14px;
  color: #1e110b;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.dk-wholesale-card h3 a {
  color: inherit;
  text-decoration: none;
}

.dk-wholesale-card h3 a:hover {
  color: #8a4f1f;
}

.dk-wholesale-card__prices {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  color: rgba(31, 17, 11, .72);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.dk-wholesale-card__prices strong {
  color: #9a5b22;
  font-size: 18px;
  font-weight: 950;
}

.dk-wholesale-card__prices .woocommerce-Price-amount {
  color: inherit;
  font-weight: inherit;
}

.dk-wholesale-card__stock {
  display: inline-flex;
  width: fit-content;
  margin: 2px 0 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 145, 85, .10);
  color: #00734c;
  font-size: 13px;
  font-weight: 950;
}

.dk-wholesale-card__button {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.dk-wholesale-empty {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 22px;
  background: rgba(255, 250, 242, .82);
  color: rgba(31, 17, 11, .72);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .dk-wholesale-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .dk-wholesale-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dk-wholesale-card__image {
    height: 210px;
  }
}

@media (max-width: 560px) {
  .dk-wholesale-catalog {
    grid-template-columns: 1fr;
  }

  .dk-wholesale-card__image {
    height: 220px;
  }
}
/* DK WHOLESALE CATALOG STYLE END */

/* DK INDIVIDUAL PAGE START */
.dk-service-page {
  max-width: 1080px;
  margin: 0 auto;
}

.dk-service-hero {
  max-width: 840px;
  margin-bottom: 38px;
}

.dk-service-hero h1 {
  margin: 0 0 18px;
  color: #1e110b;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 950;
  line-height: .96;
  letter-spacing: -.065em;
}

.dk-service-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(31, 17, 11, .72);
  font-size: 18px;
  line-height: 1.55;
}

.dk-service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.dk-service-section {
  margin-top: 30px;
}

.dk-service-grid {
  display: grid;
  gap: 20px;
}

.dk-service-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dk-service-card,
.dk-steps-card,
.dk-request-card,
.dk-final-cta {
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 26px;
  background: rgba(255, 250, 242, .78);
  box-shadow: 0 16px 42px rgba(53, 31, 15, .055);
}

.dk-service-card {
  padding: 28px;
}

.dk-service-card h2,
.dk-steps-card h2,
.dk-request-card h2,
.dk-final-cta h2 {
  margin: 0 0 16px;
  color: #1e110b;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.dk-service-card ul,
.dk-request-card ul {
  margin: 0;
  padding-left: 22px;
  color: rgba(31, 17, 11, .80);
  font-size: 17px;
  line-height: 1.62;
}

.dk-service-card li + li,
.dk-request-card li + li {
  margin-top: 8px;
}

.dk-steps-card {
  padding: clamp(26px, 4vw, 38px);
  background:
    radial-gradient(circle at 88% 10%, rgba(242, 214, 170, .58), transparent 36%),
    rgba(255, 250, 242, .82);
}

.dk-steps-card__head {
  max-width: 720px;
  margin-bottom: 24px;
}

.dk-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dk-steps-grid article {
  min-height: 180px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(105, 69, 37, .10);
}

.dk-steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(154, 91, 34, .12);
  color: #9a5b22;
  font-size: 13px;
  font-weight: 950;
}

.dk-steps-grid h3 {
  margin: 0 0 8px;
  color: #1e110b;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.dk-steps-grid p {
  margin: 0;
  color: rgba(31, 17, 11, .70);
  font-size: 15px;
  line-height: 1.48;
}

.dk-request-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: 28px;
  padding: clamp(26px, 4vw, 38px);
  background:
    radial-gradient(circle at 90% 0%, rgba(242, 214, 170, .64), transparent 38%),
    linear-gradient(135deg, rgba(255, 250, 242, .96), rgba(246, 219, 176, .70));
}

.dk-request-card p {
  max-width: 700px;
  margin: 0;
  color: rgba(31, 17, 11, .72);
  font-size: 17px;
  line-height: 1.55;
}

.dk-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(26px, 4vw, 38px);
  background: #1e110b;
  color: #fffaf2;
}

.dk-final-cta h2 {
  color: #fffaf2;
}

.dk-final-cta p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 250, 242, .78);
  font-size: 17px;
  line-height: 1.55;
}

.dk-final-cta .dk-btn {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .dk-service-grid--two,
  .dk-request-card {
    grid-template-columns: 1fr;
  }

  .dk-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dk-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .dk-service-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .dk-service-hero p,
  .dk-request-card p,
  .dk-final-cta p {
    font-size: 16px;
  }

  .dk-service-card {
    padding: 24px 20px;
  }

  .dk-steps-grid {
    grid-template-columns: 1fr;
  }

  .dk-service-hero__actions .dk-btn,
  .dk-final-cta .dk-btn {
    width: 100%;
    justify-content: center;
  }
}
/* DK INDIVIDUAL PAGE END */

/* DK CONTACTS PAGE START */
.dk-contacts-page {
  max-width: 1080px;
  margin: 0 auto;
}

.dk-contacts-hero {
  max-width: 840px;
  margin-bottom: 34px;
}

.dk-contacts-hero h1 {
  margin: 0 0 18px;
  color: #1e110b;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 950;
  line-height: .96;
  letter-spacing: -.065em;
}

.dk-contacts-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(31, 17, 11, .72);
  font-size: 18px;
  line-height: 1.55;
}

.dk-contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.dk-contact-card {
  min-height: 250px;
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 26px;
  background: rgba(255, 250, 242, .78);
  padding: 26px;
  box-shadow: 0 16px 42px rgba(53, 31, 15, .055);
}

.dk-contact-card__label {
  display: inline-flex;
  align-items: center;
  height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(154, 91, 34, .12);
  color: #9a5b22;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dk-contact-card h2 {
  margin: 0 0 12px;
  color: #1e110b;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.dk-contact-card p {
  margin: 0;
  color: rgba(31, 17, 11, .72);
  font-size: 16px;
  line-height: 1.55;
}

.dk-contact-card__value {
  display: inline-block;
  margin-bottom: 14px;
  color: #9a5b22;
  font-size: 20px;
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.dk-contact-note {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(300px, .6fr);
  gap: 28px;
  margin-top: 30px;
  border: 1px solid rgba(154, 91, 34, .24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(242, 214, 170, .70), transparent 36%),
    linear-gradient(135deg, rgba(255, 250, 242, .96), rgba(246, 219, 176, .72));
  padding: clamp(26px, 4vw, 38px);
  box-shadow: 0 24px 64px rgba(53, 31, 15, .09);
}

.dk-contact-note h2 {
  margin: 0;
  color: #1e110b;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.06em;
}

.dk-contact-note ul {
  margin: 0;
  padding-left: 22px;
  color: rgba(31, 17, 11, .80);
  font-size: 17px;
  line-height: 1.62;
}

.dk-contact-note li + li {
  margin-top: 8px;
}

.dk-contact-directions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.dk-contact-directions article {
  display: flex;
  flex-direction: column;
  min-height: 235px;
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 26px;
  background: rgba(255, 250, 242, .78);
  padding: 26px;
  box-shadow: 0 16px 42px rgba(53, 31, 15, .055);
}

.dk-contact-directions h2 {
  margin: 0 0 12px;
  color: #1e110b;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.dk-contact-directions p {
  margin: 0 0 22px;
  color: rgba(31, 17, 11, .72);
  font-size: 16px;
  line-height: 1.55;
}

.dk-contact-directions .dk-btn {
  width: fit-content;
  margin-top: auto;
}

.dk-contact-final-cta {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .dk-contacts-grid,
  .dk-contact-directions {
    grid-template-columns: 1fr;
  }

  .dk-contact-note {
    grid-template-columns: 1fr;
  }

  .dk-contact-card,
  .dk-contact-directions article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .dk-contacts-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .dk-contacts-hero p {
    font-size: 16px;
  }

  .dk-contact-card,
  .dk-contact-directions article {
    padding: 24px 20px;
  }

  .dk-contact-note {
    border-radius: 24px;
    padding: 24px 20px;
  }

  .dk-contact-directions .dk-btn,
  .dk-contact-final-cta .dk-btn {
    width: 100%;
    justify-content: center;
  }
}
/* DK CONTACTS PAGE END */

/* DK CONTACTS HEADING FIX START */
.dk-contacts-hero {
  margin-top: 8px;
  margin-bottom: 34px;
}

.dk-contacts-hero .dk-section-kicker {
  margin-bottom: 12px;
}

.dk-contacts-hero h2 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #1e110b;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: -.06em;
}

.dk-contacts-hero p {
  max-width: 760px;
}

.dk-contacts-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
}

@media (max-width: 560px) {
  .dk-contacts-hero h2,
  .dk-contacts-hero h1 {
    font-size: clamp(30px, 10vw, 42px);
  }
}
/* DK CONTACTS HEADING FIX END */

/* DK CONTACTS VISUAL FIX START */
/* H1 "Контакти" залишається основним чорним заголовком сторінки.
   Другий заголовок робимо фірмово-коричневим, щоб не було двох однаково важких чорних заголовків. */
.dk-contacts-hero h2 {
  color: #8a4f1f !important;
  font-size: clamp(32px, 3.8vw, 48px) !important;
  line-height: 1 !important;
  letter-spacing: -.055em !important;
  margin-bottom: 16px !important;
}

/* Текст під заголовком трохи спокійніший і компактніший */
.dk-contacts-hero p {
  max-width: 760px !important;
  color: rgba(31, 17, 11, .72) !important;
}

/* Нижні три картки: однакова логіка, кнопки внизу */
.dk-contact-directions {
  align-items: stretch !important;
}

.dk-contact-directions article {
  display: grid !important;
  grid-template-rows: auto 1fr auto !important;
  min-height: 250px !important;
}

.dk-contact-directions article h2 {
  margin-bottom: 12px !important;
}

.dk-contact-directions article p {
  margin-bottom: 22px !important;
}

.dk-contact-directions .dk-btn {
  align-self: end !important;
  width: fit-content !important;
  margin-top: 0 !important;
}

/* Щоб біла кнопка у картках виглядала так само впевнено, як основна */
.dk-contact-directions .dk-btn--light {
  border: 1px solid rgba(31, 17, 11, .10) !important;
  background: #fffaf2 !important;
  color: #1e110b !important;
  box-shadow: 0 8px 20px rgba(53, 31, 15, .05) !important;
}

.dk-contact-directions .dk-btn--light:hover {
  transform: translateY(-1px);
  border-color: rgba(154, 91, 34, .28) !important;
}

@media (max-width: 980px) {
  .dk-contact-directions article {
    min-height: auto !important;
  }
}

@media (max-width: 560px) {
  .dk-contacts-hero h2 {
    font-size: clamp(30px, 9.5vw, 40px) !important;
  }

  .dk-contact-directions .dk-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}
/* DK CONTACTS VISUAL FIX END */

/* DK SHOP CATALOG POLISH START */
body.woocommerce-shop .site-main,
body.post-type-archive-product .site-main,
body.tax-product_cat .site-main,
body.tax-product_tag .site-main {
  max-width: 1180px;
  margin: 0 auto;
}

/* Заголовок каталогу */
body.woocommerce-shop .woocommerce-products-header__title.page-title,
body.post-type-archive-product .woocommerce-products-header__title.page-title,
body.tax-product_cat .woocommerce-products-header__title.page-title,
body.tax-product_tag .woocommerce-products-header__title.page-title {
  margin: 0 0 26px !important;
  color: #1e110b !important;
  font-size: clamp(42px, 5vw, 66px) !important;
  font-weight: 950 !important;
  line-height: .96 !important;
  letter-spacing: -.065em !important;
}

/* Рядок "показано" + сортування */
body.woocommerce-shop .woocommerce-result-count,
body.post-type-archive-product .woocommerce-result-count,
body.tax-product_cat .woocommerce-result-count,
body.tax-product_tag .woocommerce-result-count {
  float: none !important;
  margin: 0 0 24px !important;
  color: rgba(31, 17, 11, .68) !important;
  font-size: 15px !important;
  font-weight: 850 !important;
}

body.woocommerce-shop .woocommerce-ordering,
body.post-type-archive-product .woocommerce-ordering,
body.tax-product_cat .woocommerce-ordering,
body.tax-product_tag .woocommerce-ordering {
  float: none !important;
  display: flex !important;
  justify-content: flex-end !important;
  margin: -54px 0 28px auto !important;
  max-width: 360px !important;
}

body.woocommerce-shop .woocommerce-ordering select,
body.post-type-archive-product .woocommerce-ordering select,
body.tax-product_cat .woocommerce-ordering select,
body.tax-product_tag .woocommerce-ordering select {
  width: 100% !important;
  min-height: 50px !important;
  border: 1px solid rgba(105, 69, 37, .18) !important;
  border-radius: 16px !important;
  background: #fffaf2 !important;
  color: #1e110b !important;
  padding: 0 16px !important;
  font-size: 15px !important;
  font-weight: 750 !important;
  outline: none !important;
}

/* Сітка товарів */
body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after,
body.post-type-archive-product ul.products::before,
body.post-type-archive-product ul.products::after,
body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after,
body.tax-product_tag ul.products::before,
body.tax-product_tag ul.products::after {
  display: none !important;
  content: none !important;
}

/* Картка товару */
body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product {
  float: none !important;
  display: flex !important;
  flex-direction: column !important;
  width: auto !important;
  min-height: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(105, 69, 37, .14) !important;
  border-radius: 24px !important;
  background: rgba(255, 250, 242, .82) !important;
  box-shadow: 0 14px 38px rgba(53, 31, 15, .055) !important;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease !important;
}

body.woocommerce-shop ul.products li.product:hover,
body.post-type-archive-product ul.products li.product:hover,
body.tax-product_cat ul.products li.product:hover,
body.tax-product_tag ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: rgba(154, 91, 34, .34) !important;
  background: #fffaf2 !important;
  box-shadow: 0 22px 56px rgba(53, 31, 15, .10) !important;
}

/* Посилання всередині картки */
body.woocommerce-shop ul.products li.product .woocommerce-loop-product__link,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__link,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__link,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__link {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  color: #1e110b !important;
  text-decoration: none !important;
}

/* Фото товару */
body.woocommerce-shop ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img,
body.tax-product_cat ul.products li.product a img,
body.tax-product_tag ul.products li.product a img {
  display: block !important;
  width: 100% !important;
  height: 250px !important;
  margin: 0 !important;
  padding: 22px !important;
  object-fit: contain !important;
  background: #fff !important;
  border-radius: 0 !important;
}

/* Назва */
body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title {
  margin: 0 !important;
  padding: 18px 18px 10px !important;
  color: #1e110b !important;
  font-size: 17px !important;
  font-weight: 950 !important;
  line-height: 1.13 !important;
  letter-spacing: -.035em !important;
}

/* Ціна */
body.woocommerce-shop ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
body.tax-product_tag ul.products li.product .price {
  display: block !important;
  margin: auto 0 0 !important;
  padding: 0 18px 4px !important;
  color: #9a5b22 !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
}

body.woocommerce-shop ul.products li.product .price .woocommerce-Price-amount,
body.post-type-archive-product ul.products li.product .price .woocommerce-Price-amount,
body.tax-product_cat ul.products li.product .price .woocommerce-Price-amount,
body.tax-product_tag ul.products li.product .price .woocommerce-Price-amount {
  color: inherit !important;
  font-weight: inherit !important;
}

/* Кнопка */
body.woocommerce-shop ul.products li.product .button,
body.post-type-archive-product ul.products li.product .button,
body.tax-product_cat ul.products li.product .button,
body.tax-product_tag ul.products li.product .button {
  align-self: flex-start !important;
  margin: 16px 18px 20px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #1e110b !important;
  color: #fffaf2 !important;
  padding: 13px 22px !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: transform .16s ease, background .16s ease !important;
}

body.woocommerce-shop ul.products li.product .button:hover,
body.post-type-archive-product ul.products li.product .button:hover,
body.tax-product_cat ul.products li.product .button:hover,
body.tax-product_tag ul.products li.product .button:hover {
  transform: translateY(-1px);
  background: #3a2116 !important;
}

/* Sale badge, якщо буде */
body.woocommerce-shop ul.products li.product .onsale,
body.post-type-archive-product ul.products li.product .onsale,
body.tax-product_cat ul.products li.product .onsale,
body.tax-product_tag ul.products li.product .onsale {
  top: 14px !important;
  right: 14px !important;
  left: auto !important;
  min-width: auto !important;
  min-height: auto !important;
  border-radius: 999px !important;
  background: #9a5b22 !important;
  color: #fffaf2 !important;
  padding: 8px 11px !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

/* Пагінація */
body.woocommerce-shop .woocommerce-pagination,
body.post-type-archive-product .woocommerce-pagination,
body.tax-product_cat .woocommerce-pagination,
body.tax-product_tag .woocommerce-pagination {
  margin-top: 42px !important;
}

body.woocommerce-shop .woocommerce-pagination ul,
body.post-type-archive-product .woocommerce-pagination ul,
body.tax-product_cat .woocommerce-pagination ul,
body.tax-product_tag .woocommerce-pagination ul {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 8px !important;
  border: 0 !important;
}

body.woocommerce-shop .woocommerce-pagination ul li,
body.post-type-archive-product .woocommerce-pagination ul li,
body.tax-product_cat .woocommerce-pagination ul li,
body.tax-product_tag .woocommerce-pagination ul li {
  border: 0 !important;
}

body.woocommerce-shop .woocommerce-pagination ul li a,
body.woocommerce-shop .woocommerce-pagination ul li span,
body.post-type-archive-product .woocommerce-pagination ul li a,
body.post-type-archive-product .woocommerce-pagination ul li span,
body.tax-product_cat .woocommerce-pagination ul li a,
body.tax-product_cat .woocommerce-pagination ul li span,
body.tax-product_tag .woocommerce-pagination ul li a,
body.tax-product_tag .woocommerce-pagination ul li span {
  min-width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  background: #fffaf2 !important;
  color: #1e110b !important;
  border: 1px solid rgba(105, 69, 37, .14) !important;
  font-weight: 950 !important;
  line-height: 42px !important;
  padding: 0 12px !important;
}

body.woocommerce-shop .woocommerce-pagination ul li span.current,
body.post-type-archive-product .woocommerce-pagination ul li span.current,
body.tax-product_cat .woocommerce-pagination ul li span.current,
body.tax-product_tag .woocommerce-pagination ul li span.current {
  background: #1e110b !important;
  color: #fffaf2 !important;
}

/* Адаптив */
@media (max-width: 1100px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  body.woocommerce-shop .woocommerce-ordering,
  body.post-type-archive-product .woocommerce-ordering,
  body.tax-product_cat .woocommerce-ordering,
  body.tax-product_tag .woocommerce-ordering {
    justify-content: flex-start !important;
    margin: 0 0 26px !important;
    max-width: 100% !important;
  }

  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img {
    height: 220px !important;
  }
}

@media (max-width: 560px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img {
    height: 230px !important;
  }

  body.woocommerce-shop ul.products li.product .button,
  body.post-type-archive-product ul.products li.product .button,
  body.tax-product_cat ul.products li.product .button,
  body.tax-product_tag ul.products li.product .button {
    width: calc(100% - 36px) !important;
    justify-content: center !important;
    text-align: center !important;
  }
}
/* DK SHOP CATALOG POLISH END */


/* DK SHOP SOFT POLISH START */
body.woocommerce-shop .woocommerce-products-header__title.page-title,
body.post-type-archive-product .woocommerce-products-header__title.page-title,
body.tax-product_cat .woocommerce-products-header__title.page-title,
body.tax-product_tag .woocommerce-products-header__title.page-title {
  font-size: clamp(44px, 5vw, 64px) !important;
  letter-spacing: -.06em !important;
}

body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products {
  gap: 24px !important;
}

body.woocommerce-shop ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img,
body.tax-product_cat ul.products li.product a img,
body.tax-product_tag ul.products li.product a img {
  height: 230px !important;
  padding: 20px !important;
}

body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title {
  font-size: 16px !important;
  line-height: 1.16 !important;
  padding: 18px 18px 12px !important;
}

body.woocommerce-shop ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
body.tax-product_tag ul.products li.product .price {
  padding: 0 18px 2px !important;
  font-size: 17px !important;
}

body.woocommerce-shop ul.products li.product .button,
body.post-type-archive-product ul.products li.product .button,
body.tax-product_cat ul.products li.product .button,
body.tax-product_tag ul.products li.product .button {
  margin-top: 18px !important;
  margin-bottom: 22px !important;
}

@media (max-width: 820px) {
  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img {
    height: 210px !important;
  }
}

@media (max-width: 560px) {
  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img {
    height: 220px !important;
  }
}
/* DK SHOP SOFT POLISH END */

/* DK SHOP CATEGORY NAV START */
.dk-shop-cats {
  clear: both;
  margin: 0 0 34px;
  padding: 24px;
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(242, 214, 170, .50), transparent 34%),
    rgba(255, 250, 242, .72);
  box-shadow: 0 16px 42px rgba(53, 31, 15, .055);
}

.dk-shop-cats__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dk-shop-cats__head h2 {
  margin: 0;
  color: #1e110b;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.055em;
}

.dk-shop-cats__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(105, 69, 37, .16);
  border-radius: 999px;
  background: #fffaf2;
  color: #1e110b;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.dk-shop-cats__all:hover,
.dk-shop-cats__all.is-active {
  background: #1e110b;
  color: #fffaf2;
}

.dk-shop-cats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dk-shop-cat-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 12px;
  border: 1px solid rgba(105, 69, 37, .12);
  border-radius: 20px;
  background: rgba(255, 250, 242, .86);
  color: #1e110b;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(53, 31, 15, .045);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.dk-shop-cat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 91, 34, .30);
  background: #fffaf2;
  box-shadow: 0 16px 36px rgba(53, 31, 15, .08);
}

.dk-shop-cat-card.is-active {
  border-color: rgba(154, 91, 34, .46);
  background: rgba(246, 219, 176, .48);
}

.dk-shop-cat-card__image {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background-color: #fff;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.dk-shop-cat-card__image--empty {
  background:
    radial-gradient(circle at 50% 50%, rgba(154, 91, 34, .22), transparent 42%),
    #fff;
}

.dk-shop-cat-card__body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.dk-shop-cat-card__body strong {
  color: #1e110b;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.dk-shop-cat-card__body span {
  color: rgba(31, 17, 11, .62);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
}

.dk-shop-subcats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(105, 69, 37, .12);
}

.dk-shop-subcats__label {
  margin-right: 4px;
  color: rgba(31, 17, 11, .70);
  font-size: 14px;
  font-weight: 950;
}

.dk-shop-subcats a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 999px;
  background: #fffaf2;
  color: #1e110b;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.dk-shop-subcats a:hover {
  border-color: rgba(154, 91, 34, .32);
  color: #8a4f1f;
}

body.woocommerce-shop .woocommerce-result-count,
body.post-type-archive-product .woocommerce-result-count,
body.tax-product_cat .woocommerce-result-count,
body.tax-product_tag .woocommerce-result-count {
  clear: both !important;
}

@media (max-width: 1100px) {
  .dk-shop-cats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .dk-shop-cats {
    padding: 20px;
  }

  .dk-shop-cats__head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .dk-shop-cats__all {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .dk-shop-cats {
    border-radius: 24px;
    padding: 18px;
  }

  .dk-shop-cats__grid {
    grid-template-columns: 1fr;
  }
}
/* DK SHOP CATEGORY NAV END */

/* DK SHOP CATEGORY COMPACT START */
.dk-shop-cat-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0 28px;
  padding: 16px 18px;
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 22px;
  background: rgba(255, 250, 242, .78);
  box-shadow: 0 12px 30px rgba(53, 31, 15, .045);
}

.dk-shop-cat-context__main {
  display: grid;
  gap: 4px;
  min-width: 220px;
}

.dk-shop-cat-context__label {
  color: #9a5b22;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.dk-shop-cat-context__main strong {
  color: #1e110b;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.dk-shop-cat-context__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.dk-shop-cat-context__links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(105, 69, 37, .14);
  border-radius: 999px;
  background: #fffaf2;
  color: #1e110b;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.dk-shop-cat-context__links a:hover,
.dk-shop-cat-context__links a.is-active {
  border-color: rgba(154, 91, 34, .38);
  background: rgba(246, 219, 176, .56);
  color: #8a4f1f;
}

@media (max-width: 820px) {
  .dk-shop-cat-context {
    align-items: flex-start;
    flex-direction: column;
  }

  .dk-shop-cat-context__links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .dk-shop-cat-context {
    margin: 18px 0 22px;
    padding: 14px;
    border-radius: 18px;
  }

  .dk-shop-cat-context__links a {
    min-height: 32px;
    font-size: 12px;
  }
}
/* DK SHOP CATEGORY COMPACT END */

/* DK MOBILE PASS START */

/* Tablet / small desktop */
@media (max-width: 980px) {
  .dk-container,
  body.woocommerce-shop .site-main,
  body.post-type-archive-product .site-main,
  body.tax-product_cat .site-main,
  body.tax-product_tag .site-main,
  .dk-service-page,
  .dk-contacts-page {
    width: min(100% - 32px, 1080px) !important;
  }

  .dk-hero,
  .dk-home-dropship,
  .dk-final-cta,
  .dk-request-card,
  .dk-contact-note {
    border-radius: 26px !important;
  }

  .dk-hero {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 42px 34px !important;
  }

  .dk-hero__content,
  .dk-hero-visual {
    max-width: 100% !important;
  }

  .dk-hero-visual {
    width: 100% !important;
    justify-self: stretch !important;
  }

  .dk-home-dropship {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .dk-home-dropship__pills {
    max-width: 100% !important;
  }

  .dk-category-grid,
  .dk-trust-grid,
  .dk-maker-grid,
  .dk-contact-directions,
  .dk-contacts-grid,
  .dk-service-grid--two {
    grid-template-columns: 1fr 1fr !important;
  }

  .dk-steps-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .dk-wholesale-catalog {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Mobile header and page rhythm */
@media (max-width: 760px) {
  body {
    overflow-x: hidden !important;
  }

  .dk-site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
    background: rgba(255, 250, 242, .96) !important;
    backdrop-filter: blur(10px);
  }

  .admin-bar .dk-site-header {
    top: 46px !important;
  }

  .dk-header-inner {
    width: 100% !important;
    padding: 10px 16px 12px !important;
    gap: 10px !important;
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .dk-logo {
    min-height: 38px !important;
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .dk-logo img,
  .dk-logo-mark {
    width: 34px !important;
    height: 34px !important;
  }

  .dk-main-nav {
    display: flex !important;
    width: 100% !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 2px 0 4px !important;
    white-space: nowrap !important;
    scrollbar-width: none;
  }

  .dk-main-nav::-webkit-scrollbar {
    display: none;
  }

  .dk-main-nav a {
    flex: 0 0 auto !important;
    min-height: 34px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: rgba(255, 250, 242, .82) !important;
    border: 1px solid rgba(105, 69, 37, .12) !important;
    font-size: 13px !important;
    line-height: 34px !important;
  }

  .dk-main-nav .dk-nav-cart {
    background: #1e110b !important;
    color: #fffaf2 !important;
    border-color: #1e110b !important;
  }

  main,
  .site-main,
  .dk-front {
    padding-top: 28px !important;
  }

  /* Home hero */
  .dk-hero {
    margin-top: 0 !important;
    padding: 30px 22px !important;
    border-radius: 24px !important;
  }

  .dk-hero h1 {
    max-width: 100% !important;
    font-size: clamp(38px, 10.5vw, 54px) !important;
    line-height: .98 !important;
    letter-spacing: -.06em !important;
  }

  .dk-hero__text {
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .dk-hero__actions {
    gap: 10px !important;
  }

  .dk-hero__actions .dk-btn {
    min-height: 42px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  .dk-hero-visual {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .dk-hero-visual__image {
    height: 220px !important;
    border-radius: 18px !important;
  }

  .dk-hero-visual__title {
    font-size: 15px !important;
    line-height: 1.14 !important;
  }

  .dk-hero-visual__tags {
    gap: 7px !important;
  }

  .dk-hero-visual__tags span {
    font-size: 12px !important;
    padding: 7px 10px !important;
  }

  /* Dropshipping block */
  .dk-home-dropship {
    margin-top: 28px !important;
    padding: 28px 22px !important;
    border-radius: 24px !important;
  }

  .dk-home-dropship h2 {
    font-size: clamp(32px, 9vw, 46px) !important;
    line-height: 1.02 !important;
  }

  .dk-home-dropship p {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .dk-home-dropship__pills {
    gap: 9px !important;
  }

  .dk-home-dropship__pills span {
    min-height: 38px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
  }

  .dk-home-dropship__actions {
    gap: 10px !important;
  }

  .dk-home-dropship__actions .dk-btn {
    min-height: 42px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  /* Home categories and cards */
  .dk-section {
    margin-top: 44px !important;
  }

  .dk-section-head {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .dk-section-head h2,
  .woocommerce-products-header__title.page-title,
  .entry-title {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: .98 !important;
  }

  .dk-category-grid,
  .dk-trust-grid,
  .dk-maker-grid,
  .dk-contact-directions,
  .dk-contacts-grid,
  .dk-service-grid--two,
  .dk-wholesale-catalog {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .dk-category-card,
  .dk-trust-card,
  .dk-maker-card,
  .dk-contact-card,
  .dk-contact-directions article,
  .dk-service-card {
    border-radius: 22px !important;
  }

  /* Shop category nav */
  .dk-shop-cats {
    margin: 0 0 24px !important;
    padding: 18px !important;
    border-radius: 24px !important;
  }

  .dk-shop-cats__head {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .dk-shop-cats__head h2 {
    font-size: clamp(28px, 8vw, 38px) !important;
  }

  .dk-shop-cats__all {
    width: 100% !important;
  }

  .dk-shop-cats__grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .dk-shop-cat-card {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    min-height: 78px !important;
    padding: 10px !important;
    border-radius: 18px !important;
  }

  .dk-shop-cat-card__image {
    width: 58px !important;
    height: 58px !important;
    border-radius: 14px !important;
  }

  .dk-shop-cat-card__body strong {
    font-size: 15px !important;
  }

  .dk-shop-cat-context {
    align-items: flex-start !important;
    flex-direction: column !important;
    margin: 16px 0 22px !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .dk-shop-cat-context__links {
    justify-content: flex-start !important;
    max-height: 108px !important;
    overflow: auto !important;
    padding-bottom: 2px !important;
  }

  /* WooCommerce shop list */
  body.woocommerce-shop .woocommerce-ordering,
  body.post-type-archive-product .woocommerce-ordering,
  body.tax-product_cat .woocommerce-ordering,
  body.tax-product_tag .woocommerce-ordering {
    justify-content: flex-start !important;
    max-width: 100% !important;
    margin: 0 0 22px !important;
  }

  body.woocommerce-shop .woocommerce-ordering select,
  body.post-type-archive-product .woocommerce-ordering select,
  body.tax-product_cat .woocommerce-ordering select,
  body.tax-product_tag .woocommerce-ordering select {
    min-height: 46px !important;
    font-size: 14px !important;
  }

  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    border-radius: 20px !important;
  }

  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img {
    height: 180px !important;
    padding: 14px !important;
  }

  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
  body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_tag ul.products li.product .woocommerce-loop-product__title {
    padding: 14px 14px 8px !important;
    font-size: 14px !important;
    line-height: 1.16 !important;
  }

  body.woocommerce-shop ul.products li.product .price,
  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price {
    padding: 0 14px 0 !important;
    font-size: 15px !important;
  }

  body.woocommerce-shop ul.products li.product .button,
  body.post-type-archive-product ul.products li.product .button,
  body.tax-product_cat ul.products li.product .button,
  body.tax-product_tag ul.products li.product .button {
    margin: 14px 14px 16px !important;
    padding: 12px 14px !important;
    font-size: 12px !important;
  }

  /* Service pages */
  .dk-service-hero h1,
  .dk-contacts-hero h1 {
    font-size: clamp(38px, 10vw, 54px) !important;
    line-height: .98 !important;
  }

  .dk-contacts-hero h2 {
    font-size: clamp(30px, 8vw, 42px) !important;
  }

  .dk-service-hero p,
  .dk-contacts-hero p {
    font-size: 16px !important;
  }

  .dk-request-card,
  .dk-contact-note,
  .dk-final-cta {
    grid-template-columns: 1fr !important;
    padding: 24px 20px !important;
  }

  .dk-final-cta {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .dk-steps-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .dk-wholesale-card__image {
    height: 210px !important;
  }
}

/* Narrow phones */
@media (max-width: 480px) {
  .dk-container,
  body.woocommerce-shop .site-main,
  body.post-type-archive-product .site-main,
  body.tax-product_cat .site-main,
  body.tax-product_tag .site-main,
  .dk-service-page,
  .dk-contacts-page {
    width: min(100% - 22px, 1080px) !important;
  }

  .admin-bar .dk-site-header {
    top: 46px !important;
  }

  .dk-header-inner {
    padding-left: 11px !important;
    padding-right: 11px !important;
  }

  .dk-logo {
    font-size: 18px !important;
  }

  .dk-main-nav a {
    min-height: 32px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    line-height: 32px !important;
  }

  .dk-hero {
    padding: 26px 18px !important;
  }

  .dk-hero h1 {
    font-size: clamp(36px, 11.5vw, 48px) !important;
  }

  .dk-hero__actions,
  .dk-home-dropship__actions,
  .dk-service-hero__actions {
    flex-direction: column !important;
  }

  .dk-hero__actions .dk-btn,
  .dk-home-dropship__actions .dk-btn,
  .dk-service-hero__actions .dk-btn,
  .dk-final-cta .dk-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .dk-hero-visual__image {
    height: 190px !important;
  }

  .dk-home-dropship {
    padding: 24px 18px !important;
  }

  .dk-home-dropship h2 {
    font-size: clamp(30px, 10vw, 42px) !important;
  }

  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img {
    height: 220px !important;
  }

  body.woocommerce-shop ul.products li.product .button,
  body.post-type-archive-product ul.products li.product .button,
  body.tax-product_cat ul.products li.product .button,
  body.tax-product_tag ul.products li.product .button {
    width: calc(100% - 28px) !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .dk-steps-grid {
    grid-template-columns: 1fr !important;
  }

  .dk-contact-note h2,
  .dk-request-card h2,
  .dk-final-cta h2 {
    font-size: clamp(28px, 9vw, 38px) !important;
  }

  .dk-wholesale-card__image {
    height: 220px !important;
  }
}

/* DK MOBILE PASS END */

/* DK MOBILE FIX 2 START */

/* На мобільному header не має перекривати контент */
@media (max-width: 760px) {
  .dk-site-header {
    position: relative !important;
    top: auto !important;
    z-index: 20 !important;
    background: #fffaf2 !important;
    backdrop-filter: none !important;
  }

  .admin-bar .dk-site-header {
    top: auto !important;
  }

  .dk-header-inner {
    padding: 12px 18px 14px !important;
    gap: 12px !important;
  }

  .dk-logo {
    gap: 9px !important;
  }

  .dk-logo img,
  .dk-logo-mark {
    width: 32px !important;
    height: 32px !important;
  }

  .dk-logo span {
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .dk-main-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 0 4px !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
  }

  .dk-main-nav a {
    flex: 0 0 auto !important;
  }

  main,
  .site-main,
  .dk-front {
    padding-top: 24px !important;
  }

  /* Головна: компактніший hero без обрізання зверху */
  .dk-hero {
    margin-top: 0 !important;
    padding: 24px 18px !important;
    gap: 20px !important;
  }

  .dk-hero h1 {
    font-size: clamp(32px, 9.8vw, 44px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.055em !important;
    margin-bottom: 12px !important;
  }

  .dk-hero__text {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .dk-hero-visual {
    padding: 14px !important;
  }

  .dk-hero-visual__image {
    height: 185px !important;
  }

  /* Дропшипінг на головній */
  .dk-home-dropship {
    margin-top: 24px !important;
    padding: 24px 18px !important;
  }

  .dk-home-dropship h2 {
    font-size: clamp(28px, 8.6vw, 38px) !important;
    line-height: 1.04 !important;
  }

  .dk-home-dropship__pills {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  /* Каталог: блок категорій на мобільному компактніше */
  .dk-shop-cats {
    margin: 0 0 22px !important;
    padding: 16px !important;
    border-radius: 22px !important;
  }

  .dk-shop-cats__head {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
  }

  .dk-shop-cats__head h2 {
    font-size: clamp(25px, 7.4vw, 32px) !important;
    line-height: 1.02 !important;
  }

  .dk-shop-cats__all {
    width: 100% !important;
    min-height: 38px !important;
    font-size: 13px !important;
  }

  .dk-shop-cats__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 9px !important;
  }

  .dk-shop-cat-card {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 9px !important;
    min-height: 64px !important;
    padding: 8px !important;
    border-radius: 16px !important;
  }

  .dk-shop-cat-card__image {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
  }

  .dk-shop-cat-card__body {
    gap: 3px !important;
  }

  .dk-shop-cat-card__body strong {
    font-size: 12.5px !important;
    line-height: 1.08 !important;
    letter-spacing: -.025em !important;
  }

  .dk-shop-cat-card__body span {
    font-size: 11.5px !important;
    line-height: 1.1 !important;
  }

  /* Сторінка конкретної категорії: компактний рядок без високого блоку */
  .dk-shop-cat-context {
    margin: 14px 0 20px !important;
    padding: 12px !important;
    border-radius: 18px !important;
  }

  .dk-shop-cat-context__main {
    gap: 3px !important;
  }

  .dk-shop-cat-context__main strong {
    font-size: 16px !important;
  }

  .dk-shop-cat-context__links {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    justify-content: flex-start !important;
    padding-bottom: 4px !important;
    -webkit-overflow-scrolling: touch;
  }

  .dk-shop-cat-context__links a {
    flex: 0 0 auto !important;
    min-height: 32px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }

  /* Товари: 1 колонка на 400px виглядає краще для довгих назв */
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img {
    height: 210px !important;
    padding: 16px !important;
  }

  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
  body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_tag ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px !important;
    line-height: 1.18 !important;
  }

  body.woocommerce-shop ul.products li.product .button,
  body.post-type-archive-product ul.products li.product .button,
  body.tax-product_cat ul.products li.product .button,
  body.tax-product_tag ul.products li.product .button {
    width: calc(100% - 28px) !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Службові сторінки */
  .dk-service-page,
  .dk-contacts-page {
    width: min(100% - 28px, 1080px) !important;
  }

  .dk-service-hero h1,
  .dk-contacts-hero h1 {
    font-size: clamp(31px, 8.7vw, 42px) !important;
    line-height: 1.03 !important;
    letter-spacing: -.055em !important;
  }

  .dk-service-hero .dk-section-kicker,
  .dk-contacts-hero .dk-section-kicker {
    font-size: 12px !important;
    letter-spacing: .14em !important;
  }

  .dk-service-hero p,
  .dk-contacts-hero p {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .dk-service-hero__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .dk-service-hero__actions .dk-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .dk-contacts-hero h2 {
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1.04 !important;
  }

  .dk-service-card h2,
  .dk-contact-card h2,
  .dk-contact-directions h2 {
    font-size: 25px !important;
    line-height: 1.05 !important;
  }

  .dk-request-card h2,
  .dk-contact-note h2,
  .dk-final-cta h2 {
    font-size: clamp(27px, 8vw, 36px) !important;
    line-height: 1.05 !important;
  }

  .dk-request-card,
  .dk-contact-note,
  .dk-final-cta {
    padding: 22px 18px !important;
    border-radius: 22px !important;
  }

  .dk-wholesale-card__image {
    height: 200px !important;
  }
}

@media (max-width: 430px) {
  .dk-container,
  body.woocommerce-shop .site-main,
  body.post-type-archive-product .site-main,
  body.tax-product_cat .site-main,
  body.tax-product_tag .site-main,
  .dk-service-page,
  .dk-contacts-page {
    width: min(100% - 24px, 1080px) !important;
  }

  .dk-header-inner {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .dk-shop-cats__grid {
    grid-template-columns: 1fr !important;
  }

  .dk-shop-cat-card {
    grid-template-columns: 50px minmax(0, 1fr) !important;
    min-height: 70px !important;
  }

  .dk-shop-cat-card__image {
    width: 50px !important;
    height: 50px !important;
  }

  .dk-shop-cat-card__body strong {
    font-size: 14px !important;
  }

  .dk-shop-cat-card__body span {
    font-size: 12px !important;
  }

  .dk-hero h1 {
    font-size: clamp(31px, 10vw, 40px) !important;
  }

  .dk-home-dropship h2 {
    font-size: clamp(28px, 9vw, 36px) !important;
  }
}

/* DK MOBILE FIX 2 END */

/* DK MOBILE FIX 3 START */

@media (max-width: 760px) {
  /* Header: показуємо всі пункти, без обрізання справа */
  .dk-main-nav {
    flex-wrap: wrap !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }

  .dk-main-nav a {
    min-height: 34px !important;
    line-height: 34px !important;
  }

  /* Загальні мобільні відступи */
  main,
  .site-main,
  .dk-front {
    padding-top: 22px !important;
  }

  /* Shop: на мобільному категорії робимо компактною горизонтальною стрічкою */
  body.woocommerce-shop .dk-shop-cats {
    padding: 16px !important;
    margin-bottom: 22px !important;
  }

  body.woocommerce-shop .dk-shop-cats__head {
    margin-bottom: 12px !important;
  }

  body.woocommerce-shop .dk-shop-cats__head h2 {
    font-size: clamp(24px, 7vw, 31px) !important;
    line-height: 1.02 !important;
  }

  body.woocommerce-shop .dk-shop-cats__all {
    min-height: 36px !important;
  }

  body.woocommerce-shop .dk-shop-cats__grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 2px 2px 8px !important;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  body.woocommerce-shop .dk-shop-cats__grid::-webkit-scrollbar {
    height: 4px;
  }

  body.woocommerce-shop .dk-shop-cat-card {
    flex: 0 0 230px !important;
    scroll-snap-align: start;
    grid-template-columns: 48px minmax(0, 1fr) !important;
    min-height: 72px !important;
    padding: 10px !important;
  }

  body.woocommerce-shop .dk-shop-cat-card__image {
    width: 48px !important;
    height: 48px !important;
  }

  body.woocommerce-shop .dk-shop-cat-card__body strong {
    font-size: 14px !important;
    line-height: 1.08 !important;
  }

  body.woocommerce-shop .dk-shop-cat-card__body span {
    font-size: 12px !important;
  }

  /* Category page: компактний блок лишається, але не забирає багато висоти */
  body.tax-product_cat .dk-shop-cat-context {
    padding: 12px !important;
    margin: 12px 0 18px !important;
  }

  body.tax-product_cat .dk-shop-cat-context__main strong {
    font-size: 15px !important;
  }

  body.tax-product_cat .dk-shop-cat-context__links {
    border-top: 1px solid rgba(105, 69, 37, .12);
    padding-top: 8px !important;
  }

  /* Товари: трохи нижча картка на мобільному */
  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img {
    height: 195px !important;
  }

  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
  body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_tag ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px !important;
    line-height: 1.18 !important;
  }

  /* Service pages: прибираємо надмірно важкі заголовки */
  .dk-service-hero h1 {
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1.06 !important;
    letter-spacing: -.052em !important;
    margin-bottom: 18px !important;
  }

  .dk-service-hero h2 {
    font-size: clamp(30px, 8.4vw, 40px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.055em !important;
  }

  .dk-service-hero .dk-section-kicker {
    margin-bottom: 10px !important;
  }

  .dk-service-hero p {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .dk-service-grid--two {
    gap: 16px !important;
  }

  .dk-service-card {
    padding: 22px 18px !important;
  }

  .dk-service-card h2 {
    font-size: 24px !important;
    line-height: 1.06 !important;
  }

  .dk-service-card li {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  /* Contacts: картки менш важкі */
  .dk-contact-card {
    padding: 22px 18px !important;
  }

  .dk-contact-card h2,
  .dk-contact-directions h2 {
    font-size: 23px !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 430px) {
  /* Перекриваємо попереднє правило, яке робило категорії в одну вертикальну колонку */
  body.woocommerce-shop .dk-shop-cats__grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
  }

  body.woocommerce-shop .dk-shop-cat-card {
    flex: 0 0 224px !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;
    min-height: 72px !important;
  }

  body.woocommerce-shop .dk-shop-cat-card__image {
    width: 48px !important;
    height: 48px !important;
  }

  body.woocommerce-shop .dk-shop-cat-card__body strong {
    font-size: 13.5px !important;
  }

  .dk-service-hero h1 {
    font-size: clamp(27px, 8.4vw, 34px) !important;
  }

  .dk-service-hero h2 {
    font-size: clamp(29px, 8.8vw, 36px) !important;
  }

  .dk-contacts-hero h1 {
    font-size: clamp(30px, 9vw, 38px) !important;
  }

  .dk-contacts-hero h2 {
    font-size: clamp(27px, 8vw, 34px) !important;
  }
}

/* DK MOBILE FIX 3 END */

/* DK MOBILE FIX 4 START */

@media (max-width: 760px) {
  /* На мобільному прибираємо важку текстову тінь/дублювання */
  .dk-hero h1,
  .dk-home-dropship h2,
  .dk-section-head h2,
  .entry-title,
  .page-title,
  .woocommerce-products-header__title.page-title,
  .dk-service-hero h1,
  .dk-service-hero h2,
  .dk-contacts-hero h1,
  .dk-contacts-hero h2,
  .dk-service-card h2,
  .dk-contact-card h2,
  .dk-contact-directions h2,
  .dk-request-card h2,
  .dk-contact-note h2,
  .dk-final-cta h2,
  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
  body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_tag ul.products li.product .woocommerce-loop-product__title {
    text-shadow: none !important;
  }

  /* Header: стабільна висота і без обрізання пунктів */
  .dk-header-inner {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .dk-main-nav {
    justify-content: flex-start !important;
    row-gap: 8px !important;
    column-gap: 8px !important;
  }

  .dk-main-nav a {
    box-shadow: none !important;
  }

  /* Головна: hero трохи компактніше, але без втрати акценту */
  .dk-hero {
    padding: 22px 18px !important;
    border-radius: 23px !important;
  }

  .dk-hero h1 {
    font-size: clamp(30px, 9.2vw, 39px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.052em !important;
  }

  .dk-hero__actions {
    margin-top: 18px !important;
  }

  .dk-hero-visual {
    margin-top: 2px !important;
    padding: 14px !important;
    border-radius: 21px !important;
  }

  .dk-hero-visual__image {
    height: 176px !important;
    border-radius: 17px !important;
  }

  .dk-hero-visual__title {
    font-size: 14px !important;
    line-height: 1.15 !important;
  }

  /* Дропшипінг: щоб заголовок не виглядав важче за hero */
  .dk-home-dropship h2 {
    font-size: clamp(27px, 8.2vw, 35px) !important;
    line-height: 1.06 !important;
    letter-spacing: -.052em !important;
  }

  /* Shop: категорії у стрічці, але без зайвої висоти */
  body.woocommerce-shop .dk-shop-cats {
    padding: 15px !important;
  }

  body.woocommerce-shop .dk-shop-cats__head h2 {
    font-size: clamp(23px, 6.7vw, 29px) !important;
  }

  body.woocommerce-shop .dk-shop-cat-card {
    flex-basis: 215px !important;
  }

  /* Category page: менший вступ, товари швидше починаються */
  body.tax-product_cat .woocommerce-products-header {
    margin-bottom: 16px !important;
  }

  body.tax-product_cat .woocommerce-products-header__title.page-title {
    font-size: clamp(28px, 8vw, 36px) !important;
    line-height: 1.08 !important;
  }

  body.tax-product_cat .term-description,
  body.tax-product_cat .woocommerce-products-header p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  body.tax-product_cat .dk-shop-cat-context {
    margin-top: 12px !important;
    margin-bottom: 16px !important;
  }

  /* Product cards: трохи акуратніше на 400px */
  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    border-radius: 21px !important;
  }

  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img {
    height: 188px !important;
  }

  body.woocommerce-shop ul.products li.product .price,
  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price {
    font-size: 16px !important;
  }

  /* Service pages: головні заголовки менш агресивні */
  .entry-title {
    font-size: clamp(28px, 8vw, 36px) !important;
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
  }

  .dk-service-hero h1,
  .dk-contacts-hero h1 {
    font-size: clamp(28px, 8vw, 36px) !important;
    line-height: 1.06 !important;
  }

  .dk-service-hero h2,
  .dk-contacts-hero h2 {
    font-size: clamp(27px, 7.8vw, 35px) !important;
    line-height: 1.06 !important;
  }

  .dk-service-card,
  .dk-contact-card {
    border-radius: 22px !important;
  }

  /* Floating PDF/FAB на мобільному заважає читати і натискати */
  #aiFabShadowRoot {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .dk-hero h1 {
    font-size: clamp(29px, 9vw, 37px) !important;
  }

  .dk-hero-visual__image {
    height: 170px !important;
  }

  body.woocommerce-shop .dk-shop-cat-card {
    flex-basis: 208px !important;
  }

  body.woocommerce-shop ul.products li.product a img,
  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img {
    height: 182px !important;
  }
}

/* DK MOBILE FIX 4 END */

/* DK CART MOBILE ACTIVE FIX START */
@media (max-width: 760px) {
  .dk-main-nav .dk-nav-cart {
    background: rgba(255, 250, 242, .82) !important;
    color: #1e110b !important;
    border: 1px solid rgba(105, 69, 37, .12) !important;
    box-shadow: none !important;
  }

  .dk-main-nav .dk-nav-cart:hover {
    background: rgba(246, 219, 176, .42) !important;
    color: #8a4f1f !important;
    border-color: rgba(154, 91, 34, .28) !important;
  }

  body.woocommerce-cart .dk-main-nav .dk-nav-cart,
  body.woocommerce-checkout .dk-main-nav .dk-nav-cart {
    background: #1e110b !important;
    color: #fffaf2 !important;
    border-color: #1e110b !important;
  }
}
/* DK CART MOBILE ACTIVE FIX END */

/* DK YOUTUBE AND DROPSHIPPING START */

.dk-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #1e110b;
  box-shadow: 0 24px 70px rgba(48, 27, 16, .12);
}

.dk-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.dk-home-video {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(154, 91, 34, .18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 20%, rgba(246, 191, 99, .34), transparent 34%),
    rgba(255, 250, 242, .72);
  box-shadow: 0 28px 80px rgba(48, 27, 16, .08);
}

.dk-home-video h2 {
  max-width: 520px;
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: .96;
  letter-spacing: -.055em;
}

.dk-home-video p {
  max-width: 520px;
  margin: 0;
  color: rgba(30, 17, 11, .72);
  font-size: 18px;
  line-height: 1.55;
}

body.single-product .dk-product-video {
  width: min(100% - 40px, 1080px);
  margin: 54px auto 0;
}

body.single-product .dk-product-video h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -.045em;
}

body.single-product .dk-product-video .dk-video-frame {
  border-radius: 30px;
}

.dk-dropshipping-hero {
  margin-bottom: 30px;
}

.dk-dropshipping-conditions {
  margin: 28px 0;
}

@media (max-width: 980px) {
  .dk-home-video {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dk-home-video {
    padding: 22px 18px;
    gap: 18px;
    border-radius: 24px;
  }

  .dk-home-video h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.04;
    text-shadow: none;
  }

  .dk-home-video p {
    font-size: 15px;
  }

  .dk-video-frame {
    border-radius: 20px;
  }

  body.single-product .dk-product-video {
    width: min(100% - 28px, 1080px);
    margin-top: 34px;
  }

  body.single-product .dk-product-video h2 {
    font-size: clamp(27px, 8vw, 36px);
    text-shadow: none;
  }
}

/* DK YOUTUBE AND DROPSHIPPING END */

/* DK DROPSHIPPING BUTTON FIX START */

/*
 * На сторінці Дропшипінг кнопки зроблені через Gutenberg:
 * div.wp-block-button.dk-btn > a.wp-block-button__link.
 * Тому обгортка не має поводитись як кнопка, кнопкою має бути саме <a>.
 */
body.page-id-0 .dk-dropshipping-hero .wp-block-button.dk-btn,
.dk-dropshipping-hero .wp-block-button.dk-btn,
.dk-final-cta .wp-block-button.dk-btn {
  display: inline-flex !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: visible !important;
}

.dk-dropshipping-hero .wp-block-button.dk-btn > .wp-block-button__link,
.dk-final-cta .wp-block-button.dk-btn > .wp-block-button__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 0 28px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  line-height: 1 !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease !important;
}

.dk-dropshipping-hero .wp-block-button.dk-btn--primary > .wp-block-button__link,
.dk-final-cta .wp-block-button.dk-btn--primary > .wp-block-button__link {
  background: #1e110b !important;
  color: #fffaf2 !important;
  border: 1px solid #1e110b !important;
}

.dk-dropshipping-hero .wp-block-button.dk-btn--secondary > .wp-block-button__link,
.dk-final-cta .wp-block-button.dk-btn--secondary > .wp-block-button__link {
  background: #fffaf2 !important;
  color: #1e110b !important;
  border: 1px solid rgba(105, 69, 37, .16) !important;
}

.dk-dropshipping-hero .wp-block-button.dk-btn > .wp-block-button__link:hover,
.dk-dropshipping-hero .wp-block-button.dk-btn > .wp-block-button__link:focus,
.dk-dropshipping-hero .wp-block-button.dk-btn > .wp-block-button__link:active,
.dk-final-cta .wp-block-button.dk-btn > .wp-block-button__link:hover,
.dk-final-cta .wp-block-button.dk-btn > .wp-block-button__link:focus,
.dk-final-cta .wp-block-button.dk-btn > .wp-block-button__link:active {
  transform: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.dk-dropshipping-hero .wp-block-button.dk-btn--primary > .wp-block-button__link:hover,
.dk-dropshipping-hero .wp-block-button.dk-btn--primary > .wp-block-button__link:focus,
.dk-dropshipping-hero .wp-block-button.dk-btn--primary > .wp-block-button__link:active {
  background: #2b180f !important;
  color: #fffaf2 !important;
}

.dk-dropshipping-hero .wp-block-button.dk-btn--secondary > .wp-block-button__link:hover,
.dk-dropshipping-hero .wp-block-button.dk-btn--secondary > .wp-block-button__link:focus,
.dk-dropshipping-hero .wp-block-button.dk-btn--secondary > .wp-block-button__link:active {
  background: #f6dbb0 !important;
  color: #1e110b !important;
}

@media (max-width: 760px) {
  .dk-dropshipping-hero .dk-service-hero__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .dk-dropshipping-hero .wp-block-button.dk-btn,
  .dk-dropshipping-hero .wp-block-button.dk-btn > .wp-block-button__link,
  .dk-final-cta .wp-block-button.dk-btn,
  .dk-final-cta .wp-block-button.dk-btn > .wp-block-button__link {
    width: 100% !important;
  }
}

/* DK DROPSHIPPING BUTTON FIX END */

/* DK DROPSHIPPING LIGHT BUTTONS START */

/* На сторінці Дропшипінг обидві hero-кнопки світлі.
   Активний/натиснутий стан — бежевий, без чорного залипання зліва. */
.dk-dropshipping-hero .wp-block-buttons,
.dk-dropshipping-hero .dk-service-hero__actions {
  align-items: center !important;
}

.dk-dropshipping-hero .wp-block-button.dk-btn,
.dk-dropshipping-hero .wp-block-button.dk-btn--primary,
.dk-dropshipping-hero .wp-block-button.dk-btn--secondary {
  display: inline-flex !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: visible !important;
}

.dk-dropshipping-hero .wp-block-button.dk-btn > .wp-block-button__link,
.dk-dropshipping-hero .wp-block-button.dk-btn--primary > .wp-block-button__link,
.dk-dropshipping-hero .wp-block-button.dk-btn--secondary > .wp-block-button__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 0 30px !important;
  border-radius: 999px !important;
  background: #fffaf2 !important;
  color: #1e110b !important;
  border: 1px solid rgba(105, 69, 37, .16) !important;
  box-shadow: none !important;
  transform: none !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.dk-dropshipping-hero .wp-block-button.dk-btn > .wp-block-button__link:hover,
.dk-dropshipping-hero .wp-block-button.dk-btn > .wp-block-button__link:focus,
.dk-dropshipping-hero .wp-block-button.dk-btn > .wp-block-button__link:active,
.dk-dropshipping-hero .wp-block-button.dk-btn--primary > .wp-block-button__link:hover,
.dk-dropshipping-hero .wp-block-button.dk-btn--primary > .wp-block-button__link:focus,
.dk-dropshipping-hero .wp-block-button.dk-btn--primary > .wp-block-button__link:active,
.dk-dropshipping-hero .wp-block-button.dk-btn--secondary > .wp-block-button__link:hover,
.dk-dropshipping-hero .wp-block-button.dk-btn--secondary > .wp-block-button__link:focus,
.dk-dropshipping-hero .wp-block-button.dk-btn--secondary > .wp-block-button__link:active {
  background: #f6dbb0 !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
  box-shadow: none !important;
  transform: none !important;
  outline: none !important;
}

.dk-dropshipping-hero .wp-block-button.dk-btn:active,
.dk-dropshipping-hero .wp-block-button.dk-btn--primary:active,
.dk-dropshipping-hero .wp-block-button.dk-btn--secondary:active {
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

@media (max-width: 760px) {
  .dk-dropshipping-hero .dk-service-hero__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .dk-dropshipping-hero .wp-block-button.dk-btn,
  .dk-dropshipping-hero .wp-block-button.dk-btn > .wp-block-button__link {
    width: 100% !important;
  }
}

/* DK DROPSHIPPING LIGHT BUTTONS END */

/* DK SOFT BUTTONS SYSTEM START */

/*
 * Єдина логіка для другорядних кнопок:
 * звичайний стан — світлий,
 * hover/focus/active — бежевий,
 * без чорного активного залипання.
 */

/* Header cart: на звичайних сторінках не виглядає як активна вкладка */
.dk-main-nav .dk-nav-cart {
  background: #fffaf2 !important;
  color: #1e110b !important;
  border: 1px solid rgba(105, 69, 37, .16) !important;
  box-shadow: none !important;
  transform: none !important;
}

.dk-main-nav .dk-nav-cart:hover,
.dk-main-nav .dk-nav-cart:focus,
.dk-main-nav .dk-nav-cart:active {
  background: #f6dbb0 !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
  box-shadow: none !important;
  transform: none !important;
  outline: none !important;
}

/* На самій сторінці кошика / checkout можна лишити кошик активним темним */
body.woocommerce-cart .dk-main-nav .dk-nav-cart,
body.woocommerce-checkout .dk-main-nav .dk-nav-cart {
  background: #1e110b !important;
  color: #fffaf2 !important;
  border-color: #1e110b !important;
}

/* "Усі товари" у навігації категорій каталогу */
.dk-shop-cats a[href$="/shop/"],
.dk-shop-cats a[href*="/shop/?"],
.dk-shop-category-nav a[href$="/shop/"],
.dk-shop-category-nav a[href*="/shop/?"],
.dk-shop-cat-all,
.dk-shop-cats__all,
.dk-shop-category-all,
.dk-shop-category-nav__all {
  background: #fffaf2 !important;
  color: #1e110b !important;
  border: 1px solid rgba(105, 69, 37, .16) !important;
  box-shadow: none !important;
  transform: none !important;
}

.dk-shop-cats a[href$="/shop/"]:hover,
.dk-shop-cats a[href$="/shop/"]:focus,
.dk-shop-cats a[href$="/shop/"]:active,
.dk-shop-cats a[href*="/shop/?"]:hover,
.dk-shop-cats a[href*="/shop/?"]:focus,
.dk-shop-cats a[href*="/shop/?"]:active,
.dk-shop-category-nav a[href$="/shop/"]:hover,
.dk-shop-category-nav a[href$="/shop/"]:focus,
.dk-shop-category-nav a[href$="/shop/"]:active,
.dk-shop-category-nav a[href*="/shop/?"]:hover,
.dk-shop-category-nav a[href*="/shop/?"]:focus,
.dk-shop-category-nav a[href*="/shop/?"]:active,
.dk-shop-cat-all:hover,
.dk-shop-cat-all:focus,
.dk-shop-cat-all:active,
.dk-shop-cats__all:hover,
.dk-shop-cats__all:focus,
.dk-shop-cats__all:active,
.dk-shop-category-all:hover,
.dk-shop-category-all:focus,
.dk-shop-category-all:active,
.dk-shop-category-nav__all:hover,
.dk-shop-category-nav__all:focus,
.dk-shop-category-nav__all:active {
  background: #f6dbb0 !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
  box-shadow: none !important;
  transform: none !important;
  outline: none !important;
}

/* Кнопки "Додати в кошик" у картках товарів каталогу */
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
ul.products li.product .button,
ul.products li.product .added_to_cart,
.dk-wholesale-product-card .button,
.dk-wholesale-product-card a.button {
  background: #fffaf2 !important;
  color: #1e110b !important;
  border: 1px solid rgba(105, 69, 37, .16) !important;
  box-shadow: none !important;
  transform: none !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .button:focus,
.woocommerce ul.products li.product .button:active,
.woocommerce-page ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:focus,
.woocommerce-page ul.products li.product .button:active,
ul.products li.product .button:hover,
ul.products li.product .button:focus,
ul.products li.product .button:active,
ul.products li.product .added_to_cart:hover,
ul.products li.product .added_to_cart:focus,
ul.products li.product .added_to_cart:active,
.dk-wholesale-product-card .button:hover,
.dk-wholesale-product-card .button:focus,
.dk-wholesale-product-card .button:active,
.dk-wholesale-product-card a.button:hover,
.dk-wholesale-product-card a.button:focus,
.dk-wholesale-product-card a.button:active {
  background: #f6dbb0 !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
  box-shadow: none !important;
  transform: none !important;
  outline: none !important;
}

/* Після додавання AJAX-кнопка WooCommerce іноді отримує класи loading/added */
.woocommerce ul.products li.product .button.loading,
.woocommerce ul.products li.product .button.added,
ul.products li.product .button.loading,
ul.products li.product .button.added {
  background: #f6dbb0 !important;
  color: #1e110b !important;
  opacity: 1 !important;
}

/* Mobile: та сама логіка, кнопки не чорніють */
@media (max-width: 760px) {
  .dk-main-nav .dk-nav-cart,
  .woocommerce ul.products li.product .button,
  .woocommerce-page ul.products li.product .button,
  ul.products li.product .button,
  .dk-shop-cats a[href$="/shop/"],
  .dk-shop-cats a[href*="/shop/?"],
  .dk-shop-category-nav a[href$="/shop/"],
  .dk-shop-category-nav a[href*="/shop/?"] {
    background: #fffaf2 !important;
    color: #1e110b !important;
  }

  .dk-main-nav .dk-nav-cart:hover,
  .dk-main-nav .dk-nav-cart:focus,
  .dk-main-nav .dk-nav-cart:active,
  .woocommerce ul.products li.product .button:hover,
  .woocommerce ul.products li.product .button:focus,
  .woocommerce ul.products li.product .button:active,
  ul.products li.product .button:hover,
  ul.products li.product .button:focus,
  ul.products li.product .button:active {
    background: #f6dbb0 !important;
    color: #1e110b !important;
  }

  body.woocommerce-cart .dk-main-nav .dk-nav-cart,
  body.woocommerce-checkout .dk-main-nav .dk-nav-cart {
    background: #1e110b !important;
    color: #fffaf2 !important;
  }
}

/* DK SOFT BUTTONS SYSTEM END */

/* DK CONTENT CTA HOVER POLISH START */

/*
  Добиваємо hover/focus/active тільки для кнопок у контенті.
  Header/nav не чіпаємо.
  Темні кнопки і світлі кнопки при наведенні стають бежевими.
*/

.dk-front a.button,
.dk-front button.button,
.dk-front .button,
.dk-front .added_to_cart,
.dk-front .single_add_to_cart_button,
.dk-front .wp-element-button,
.dk-front .wp-block-button__link,
.dk-front [class*="dk-btn"] {
  transition:
    background-color .18s ease,
    color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease !important;
}

/* Hover / focus / active для всіх контентних CTA */
.dk-front a.button:hover,
.dk-front button.button:hover,
.dk-front .button:hover,
.dk-front .added_to_cart:hover,
.dk-front .single_add_to_cart_button:hover,
.dk-front .wp-element-button:hover,
.dk-front .wp-block-button__link:hover,
.dk-front [class*="dk-btn"]:hover,
.dk-front a.button:focus,
.dk-front button.button:focus,
.dk-front .button:focus,
.dk-front .added_to_cart:focus,
.dk-front .single_add_to_cart_button:focus,
.dk-front .wp-element-button:focus,
.dk-front .wp-block-button__link:focus,
.dk-front [class*="dk-btn"]:focus,
.dk-front a.button:focus-visible,
.dk-front button.button:focus-visible,
.dk-front .button:focus-visible,
.dk-front .added_to_cart:focus-visible,
.dk-front .single_add_to_cart_button:focus-visible,
.dk-front .wp-element-button:focus-visible,
.dk-front .wp-block-button__link:focus-visible,
.dk-front [class*="dk-btn"]:focus-visible,
.dk-front a.button:active,
.dk-front button.button:active,
.dk-front .button:active,
.dk-front .added_to_cart:active,
.dk-front .single_add_to_cart_button:active,
.dk-front .wp-element-button:active,
.dk-front .wp-block-button__link:active,
.dk-front [class*="dk-btn"]:active {
  background: #f6dbb0 !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
  box-shadow: none !important;
  outline: none !important;
  transform: none !important;
}

/* Якщо WooCommerce додає loading / added */
.dk-front .button.loading,
.dk-front .button.added,
.dk-front .added_to_cart {
  transition:
    background-color .18s ease,
    color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease !important;
}

/* Трохи точніше для типових блоків на сайті */
.home .dk-front a.button:hover,
.home .dk-front .button:hover,
.home .dk-front [class*="dk-btn"]:hover,
.page-template-default .dk-front a.button:hover,
.page-template-default .dk-front .button:hover,
.page-template-default .dk-front [class*="dk-btn"]:hover,
.post-type-archive-product .dk-front a.button:hover,
.post-type-archive-product .dk-front .button:hover,
.post-type-archive-product .dk-front [class*="dk-btn"]:hover,
.tax-product_cat .dk-front a.button:hover,
.tax-product_cat .dk-front .button:hover,
.tax-product_cat .dk-front [class*="dk-btn"]:hover,
.single-product .dk-front a.button:hover,
.single-product .dk-front .button:hover,
.single-product .dk-front [class*="dk-btn"]:hover {
  background: #f6dbb0 !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
}

/* Кнопки в картках товарів */
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .button:focus,
.woocommerce ul.products li.product .button:active,
.woocommerce-page ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:focus,
.woocommerce-page ul.products li.product .button:active,
ul.products li.product .button:hover,
ul.products li.product .button:focus,
ul.products li.product .button:active,
ul.products li.product .added_to_cart:hover,
ul.products li.product .added_to_cart:focus,
ul.products li.product .added_to_cart:active {
  background: #f6dbb0 !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Single product CTA */
.single-product .single_add_to_cart_button:hover,
.single-product .single_add_to_cart_button:focus,
.single-product .single_add_to_cart_button:active {
  background: #f6dbb0 !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Mobile також */
@media (max-width: 760px) {
  .dk-front a.button:hover,
  .dk-front button.button:hover,
  .dk-front .button:hover,
  .dk-front .added_to_cart:hover,
  .dk-front .single_add_to_cart_button:hover,
  .dk-front .wp-element-button:hover,
  .dk-front .wp-block-button__link:hover,
  .dk-front [class*="dk-btn"]:hover,
  .dk-front a.button:focus,
  .dk-front button.button:focus,
  .dk-front .button:focus,
  .dk-front .added_to_cart:focus,
  .dk-front .single_add_to_cart_button:focus,
  .dk-front .wp-element-button:focus,
  .dk-front .wp-block-button__link:focus,
  .dk-front [class*="dk-btn"]:focus,
  .dk-front a.button:active,
  .dk-front button.button:active,
  .dk-front .button:active,
  .dk-front .added_to_cart:active,
  .dk-front .single_add_to_cart_button:active,
  .dk-front .wp-element-button:active,
  .dk-front .wp-block-button__link:active,
  .dk-front [class*="dk-btn"]:active {
    background: #f6dbb0 !important;
    color: #1e110b !important;
    border-color: rgba(154, 91, 34, .28) !important;
    box-shadow: none !important;
    outline: none !important;
  }
}

/* DK CONTENT CTA HOVER POLISH END */

/* DK FINAL BUTTON OVERLAY FIX START */

/*
 * Фінально прибираємо накладання старого hover-шару на контентних кнопках.
 * Header/nav не чіпаємо.
 */

/* Базовий список контентних кнопок */
main .dk-btn,
main a.dk-btn,
main .dk-button,
main a.dk-button,
main .wp-block-button__link,
main .woocommerce a.button,
main .woocommerce button.button,
main .woocommerce input.button,
main .woocommerce ul.products li.product a.button,
main .woocommerce ul.products li.product a.added_to_cart,
main ul.products li.product a.button,
main ul.products li.product a.added_to_cart,
main .add_to_cart_button,
main .added_to_cart,
main .product_type_simple,
main .single_add_to_cart_button {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transform: none !important;
  transition:
    background-color .18s ease,
    color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease !important;
}

/* Прибираємо старі overlay-псевдоелементи */
main .dk-btn::before,
main .dk-btn::after,
main a.dk-btn::before,
main a.dk-btn::after,
main .dk-button::before,
main .dk-button::after,
main a.dk-button::before,
main a.dk-button::after,
main .wp-block-button__link::before,
main .wp-block-button__link::after,
main .woocommerce a.button::before,
main .woocommerce a.button::after,
main .woocommerce button.button::before,
main .woocommerce button.button::after,
main .woocommerce input.button::before,
main .woocommerce input.button::after,
main .woocommerce ul.products li.product a.button::before,
main .woocommerce ul.products li.product a.button::after,
main .woocommerce ul.products li.product a.added_to_cart::before,
main .woocommerce ul.products li.product a.added_to_cart::after,
main ul.products li.product a.button::before,
main ul.products li.product a.button::after,
main ul.products li.product a.added_to_cart::before,
main ul.products li.product a.added_to_cart::after,
main .add_to_cart_button::before,
main .add_to_cart_button::after,
main .added_to_cart::before,
main .added_to_cart::after,
main .product_type_simple::before,
main .product_type_simple::after,
main .single_add_to_cart_button::before,
main .single_add_to_cart_button::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Темні CTA: нормальний стан лишається темним */
main .dk-btn--primary,
main a.dk-btn--primary,
main .dk-button--primary,
main a.dk-button--primary,
main .woocommerce ul.products li.product a.button,
main ul.products li.product a.button,
main .add_to_cart_button,
main .product_type_simple,
main .single_add_to_cart_button {
  background: #1e110b !important;
  color: #fffaf2 !important;
  border: 1px solid #1e110b !important;
}

/* Світлі CTA: нормальний стан світлий */
main .dk-btn--secondary,
main a.dk-btn--secondary,
main .dk-button--secondary,
main a.dk-button--secondary,
main .added_to_cart,
main ul.products li.product a.added_to_cart,
main .woocommerce ul.products li.product a.added_to_cart {
  background: #fffaf2 !important;
  color: #1e110b !important;
  border: 1px solid rgba(105, 69, 37, .16) !important;
}

/* Hover / focus / active для всіх контентних кнопок */
main .dk-btn:hover,
main .dk-btn:focus,
main .dk-btn:active,
main a.dk-btn:hover,
main a.dk-btn:focus,
main a.dk-btn:active,
main .dk-button:hover,
main .dk-button:focus,
main .dk-button:active,
main a.dk-button:hover,
main a.dk-button:focus,
main a.dk-button:active,
main .wp-block-button__link:hover,
main .wp-block-button__link:focus,
main .wp-block-button__link:active,
main .woocommerce a.button:hover,
main .woocommerce a.button:focus,
main .woocommerce a.button:active,
main .woocommerce button.button:hover,
main .woocommerce button.button:focus,
main .woocommerce button.button:active,
main .woocommerce input.button:hover,
main .woocommerce input.button:focus,
main .woocommerce input.button:active,
main .woocommerce ul.products li.product a.button:hover,
main .woocommerce ul.products li.product a.button:focus,
main .woocommerce ul.products li.product a.button:active,
main .woocommerce ul.products li.product a.added_to_cart:hover,
main .woocommerce ul.products li.product a.added_to_cart:focus,
main .woocommerce ul.products li.product a.added_to_cart:active,
main ul.products li.product a.button:hover,
main ul.products li.product a.button:focus,
main ul.products li.product a.button:active,
main ul.products li.product a.added_to_cart:hover,
main ul.products li.product a.added_to_cart:focus,
main ul.products li.product a.added_to_cart:active,
main .add_to_cart_button:hover,
main .add_to_cart_button:focus,
main .add_to_cart_button:active,
main .added_to_cart:hover,
main .added_to_cart:focus,
main .added_to_cart:active,
main .product_type_simple:hover,
main .product_type_simple:focus,
main .product_type_simple:active,
main .single_add_to_cart_button:hover,
main .single_add_to_cart_button:focus,
main .single_add_to_cart_button:active {
  background: #f6dbb0 !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
  box-shadow: none !important;
  outline: none !important;
  transform: none !important;
}

/* WooCommerce loading/added стани без темного overlay */
main .woocommerce a.button.loading,
main .woocommerce a.button.added,
main ul.products li.product a.button.loading,
main ul.products li.product a.button.added,
main .add_to_cart_button.loading,
main .add_to_cart_button.added {
  background: #f6dbb0 !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
  opacity: 1 !important;
}

/* Disabled/out-of-stock не робимо активним */
main .woocommerce a.button.disabled,
main .woocommerce button.button.disabled,
main .woocommerce input.button.disabled,
main .woocommerce a.button:disabled,
main .woocommerce button.button:disabled,
main .woocommerce input.button:disabled {
  opacity: .55 !important;
  cursor: not-allowed !important;
}

/* DK FINAL BUTTON OVERLAY FIX END */

/* DK SHOP BUTTON TRUE HOVER FIX START */

/*
 * Точковий фікс для кнопок "Додати в кошик" саме в каталозі / категоріях.
 * Попередній фікс працював на головній, але не завжди ловив WooCommerce archive loop.
 */

/* Нормальний стан у каталозі — темна кнопка */
body.post-type-archive-product ul.products li.product a.button,
body.tax-product_cat ul.products li.product a.button,
body.woocommerce-shop ul.products li.product a.button,
body.archive.woocommerce ul.products li.product a.button,
main.woocommerce ul.products li.product a.button,
main.dk-front ul.products li.product a.button,
ul.products.columns-4 li.product a.button,
ul.products li.product a.add_to_cart_button,
ul.products li.product a.product_type_simple {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #1e110b !important;
  background-color: #1e110b !important;
  background-image: none !important;
  color: #fffaf2 !important;
  border: 1px solid #1e110b !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

/* Прибираємо будь-який старий overlay / декоративний шар */
body.post-type-archive-product ul.products li.product a.button::before,
body.post-type-archive-product ul.products li.product a.button::after,
body.tax-product_cat ul.products li.product a.button::before,
body.tax-product_cat ul.products li.product a.button::after,
body.woocommerce-shop ul.products li.product a.button::before,
body.woocommerce-shop ul.products li.product a.button::after,
body.archive.woocommerce ul.products li.product a.button::before,
body.archive.woocommerce ul.products li.product a.button::after,
main.woocommerce ul.products li.product a.button::before,
main.woocommerce ul.products li.product a.button::after,
main.dk-front ul.products li.product a.button::before,
main.dk-front ul.products li.product a.button::after,
ul.products.columns-4 li.product a.button::before,
ul.products.columns-4 li.product a.button::after,
ul.products li.product a.add_to_cart_button::before,
ul.products li.product a.add_to_cart_button::after,
ul.products li.product a.product_type_simple::before,
ul.products li.product a.product_type_simple::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Hover / focus / active у каталозі — повністю бежева кнопка, без чорної підкладки */
body.post-type-archive-product ul.products li.product a.button:hover,
body.post-type-archive-product ul.products li.product a.button:focus,
body.post-type-archive-product ul.products li.product a.button:active,
body.tax-product_cat ul.products li.product a.button:hover,
body.tax-product_cat ul.products li.product a.button:focus,
body.tax-product_cat ul.products li.product a.button:active,
body.woocommerce-shop ul.products li.product a.button:hover,
body.woocommerce-shop ul.products li.product a.button:focus,
body.woocommerce-shop ul.products li.product a.button:active,
body.archive.woocommerce ul.products li.product a.button:hover,
body.archive.woocommerce ul.products li.product a.button:focus,
body.archive.woocommerce ul.products li.product a.button:active,
main.woocommerce ul.products li.product a.button:hover,
main.woocommerce ul.products li.product a.button:focus,
main.woocommerce ul.products li.product a.button:active,
main.dk-front ul.products li.product a.button:hover,
main.dk-front ul.products li.product a.button:focus,
main.dk-front ul.products li.product a.button:active,
ul.products.columns-4 li.product a.button:hover,
ul.products.columns-4 li.product a.button:focus,
ul.products.columns-4 li.product a.button:active,
ul.products li.product a.add_to_cart_button:hover,
ul.products li.product a.add_to_cart_button:focus,
ul.products li.product a.add_to_cart_button:active,
ul.products li.product a.product_type_simple:hover,
ul.products li.product a.product_type_simple:focus,
ul.products li.product a.product_type_simple:active {
  background: #f6dbb0 !important;
  background-color: #f6dbb0 !important;
  background-image: none !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
  outline: none !important;
}

/* WooCommerce AJAX стани */
body.post-type-archive-product ul.products li.product a.button.loading,
body.post-type-archive-product ul.products li.product a.button.added,
body.tax-product_cat ul.products li.product a.button.loading,
body.tax-product_cat ul.products li.product a.button.added,
body.woocommerce-shop ul.products li.product a.button.loading,
body.woocommerce-shop ul.products li.product a.button.added,
body.archive.woocommerce ul.products li.product a.button.loading,
body.archive.woocommerce ul.products li.product a.button.added,
main.woocommerce ul.products li.product a.button.loading,
main.woocommerce ul.products li.product a.button.added,
ul.products li.product a.add_to_cart_button.loading,
ul.products li.product a.add_to_cart_button.added {
  background: #f6dbb0 !important;
  background-color: #f6dbb0 !important;
  background-image: none !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
  opacity: 1 !important;
}

/* DK SHOP BUTTON TRUE HOVER FIX END */

/* DK YOUTUBE VIDEO STYLE START */

.dk-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
  background: #1e110b;
  border: 1px solid rgba(105, 69, 37, .16);
  box-shadow: 0 18px 55px rgba(50, 32, 18, .10);
}

.dk-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.dk-product-video {
  margin-top: clamp(44px, 5vw, 76px);
  margin-bottom: clamp(34px, 4vw, 56px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 12%, rgba(246, 219, 176, .85), rgba(246, 219, 176, 0) 34%),
    rgba(255, 250, 242, .72);
  border: 1px solid rgba(105, 69, 37, .16);
  box-shadow: 0 18px 50px rgba(50, 32, 18, .08);
}

.dk-product-video h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: .98;
}

.dk-home-video {
  margin-top: clamp(44px, 5vw, 72px);
  margin-bottom: clamp(44px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 15%, rgba(246, 219, 176, .95), rgba(246, 219, 176, 0) 36%),
    #fffaf2;
  border: 1px solid rgba(105, 69, 37, .16);
  box-shadow: 0 22px 60px rgba(50, 32, 18, .08);
}

.dk-home-video h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: .95;
  max-width: 620px;
}

.dk-home-video p {
  max-width: 620px;
}

.dk-home-video__copy > *:last-child {
  margin-bottom: 0;
}

.dk-home-video__media {
  min-width: 0;
}

@media (max-width: 980px) {
  .dk-home-video {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .dk-home-video,
  .dk-product-video {
    border-radius: 24px;
    padding: 18px;
  }

  .dk-video-frame {
    border-radius: 20px;
  }

  .dk-home-video h2,
  .dk-product-video h2 {
    font-size: 30px;
  }
}

/* DK YOUTUBE VIDEO STYLE END */

/* DK PRODUCT SEARCH STYLE START */

.dk-product-search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.dk-product-search__input {
  width: 100%;
  min-height: 42px;
  padding: 0 92px 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(105, 69, 37, .16);
  background: #fffaf2;
  color: #1e110b;
  font: inherit;
  font-weight: 800;
  outline: none;
  box-shadow: none;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.dk-product-search__input::placeholder {
  color: rgba(30, 17, 11, .52);
  font-weight: 700;
}

.dk-product-search__input:focus {
  border-color: rgba(154, 91, 34, .35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(246, 219, 176, .45);
}

.dk-product-search__submit {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #1e110b;
  background: #1e110b;
  color: #fffaf2;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transform: none;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.dk-product-search__submit:hover,
.dk-product-search__submit:focus,
.dk-product-search__submit:active {
  background: #f6dbb0;
  color: #1e110b;
  border-color: rgba(154, 91, 34, .28);
  outline: none;
}

.dk-product-search--header {
  flex: 0 1 310px;
  max-width: 310px;
  margin-left: 14px;
}

.dk-shop-search-wrap {
  width: 100%;
  margin: 0 0 22px;
  display: flex;
  justify-content: flex-end;
}

.dk-product-search--shop {
  width: min(100%, 520px);
}

@media (max-width: 1180px) {
  .dk-header-inner {
    flex-wrap: wrap;
  }

  .dk-product-search--header {
    order: 3;
    flex: 1 1 100%;
    max-width: 100%;
    margin: 8px 0 0;
  }
}

@media (max-width: 760px) {
  .dk-product-search--header {
    margin-top: 12px;
  }

  .dk-shop-search-wrap {
    justify-content: stretch;
    margin-bottom: 18px;
  }

  .dk-product-search--shop {
    width: 100%;
  }

  .dk-product-search__input {
    min-height: 46px;
    padding-right: 88px;
  }

  .dk-product-search__submit {
    min-width: 74px;
    padding: 0 14px;
  }
}

@media (max-width: 420px) {
  .dk-product-search__input {
    font-size: 14px;
    padding-left: 14px;
    padding-right: 82px;
  }

  .dk-product-search__submit {
    min-width: 70px;
    font-size: 13px;
  }
}

/* DK PRODUCT SEARCH STYLE END */

/* DK SEARCH VISUAL FIX START */

/* На каталозі/категоріях пошук у шапці ховаємо, бо є основний пошук над товарами */
body.post-type-archive-product .dk-product-search--header,
body.woocommerce-shop .dk-product-search--header,
body.tax-product_cat .dk-product-search--header,
body.archive.woocommerce .dk-product-search--header {
  display: none !important;
}

/* Основний пошук у каталозі */
.dk-shop-search-wrap {
  width: 100%;
  margin: 0 0 26px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.dk-product-search--shop {
  width: min(100%, 520px);
  height: 52px;
  display: flex;
  align-items: center;
}

.dk-product-search {
  position: relative;
}

.dk-product-search__input {
  height: 52px !important;
  min-height: 52px !important;
  line-height: 52px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 112px !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
}

.dk-product-search__submit {
  position: absolute !important;
  top: 50% !important;
  right: 6px !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  height: 40px !important;
  min-height: 40px !important;
  line-height: 1 !important;
  padding: 0 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
}

/* Hover кнопки пошуку — як інші м’які кнопки */
.dk-product-search__submit:hover,
.dk-product-search__submit:focus,
.dk-product-search__submit:active {
  background: #f6dbb0 !important;
  color: #1e110b !important;
  border-color: rgba(154, 91, 34, .28) !important;
  transform: translateY(-50%) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* На інших сторінках header-пошук, якщо лишається, теж вирівняний */
.dk-product-search--header {
  height: 44px;
  align-items: center;
}

.dk-product-search--header .dk-product-search__input {
  height: 44px !important;
  min-height: 44px !important;
  line-height: 44px !important;
  padding-right: 96px !important;
}

.dk-product-search--header .dk-product-search__submit {
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 18px !important;
}

/* Mobile */
@media (max-width: 760px) {
  .dk-shop-search-wrap {
    justify-content: stretch;
    margin-bottom: 18px;
  }

  .dk-product-search--shop {
    width: 100%;
    height: 48px;
  }

  .dk-product-search__input {
    height: 48px !important;
    min-height: 48px !important;
    line-height: 48px !important;
    padding-right: 96px !important;
    font-size: 14px;
  }

  .dk-product-search__submit {
    height: 36px !important;
    min-height: 36px !important;
    right: 6px !important;
    padding: 0 16px !important;
    font-size: 13px;
  }
}

/* DK SEARCH VISUAL FIX END */

/* DK SEARCH EMPTY STATE STYLE START */

.dk-search-empty {
  width: min(100%, 920px);
  margin: 28px 0 90px;
}

.dk-search-empty__inner {
  padding: clamp(24px, 4vw, 46px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 12%, rgba(246, 219, 176, .9), rgba(246, 219, 176, 0) 38%),
    #fffaf2;
  border: 1px solid rgba(105, 69, 37, .16);
  box-shadow: 0 22px 60px rgba(50, 32, 18, .08);
}

.dk-search-empty h2 {
  margin: 0 0 16px;
  max-width: 760px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: .98;
  letter-spacing: -.03em;
}

.dk-search-empty h2 span {
  color: #9a5b22;
}

.dk-search-empty__text {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(30, 17, 11, .72);
  font-size: 18px;
  line-height: 1.55;
}

.dk-search-empty__form {
  max-width: 620px;
  margin: 0 0 22px;
}

.dk-product-search--empty {
  width: 100%;
  height: 52px;
}

.dk-product-search--empty .dk-product-search__input {
  height: 52px !important;
  min-height: 52px !important;
  line-height: 52px !important;
  padding-right: 112px !important;
}

.dk-product-search--empty .dk-product-search__submit {
  top: 50% !important;
  right: 6px !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  height: 40px !important;
  min-height: 40px !important;
}

.dk-product-search--empty .dk-product-search__submit:hover,
.dk-product-search--empty .dk-product-search__submit:focus,
.dk-product-search--empty .dk-product-search__submit:active {
  transform: translateY(-50%) !important;
}

.dk-search-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}

.dk-search-empty__tips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(105, 69, 37, .12);
  color: rgba(30, 17, 11, .72);
  line-height: 1.45;
}

.dk-search-empty__tips strong {
  color: #1e110b;
}

.woocommerce-info + .dk-search-empty,
.woocommerce-notices-wrapper + .dk-search-empty {
  margin-top: 18px;
}

@media (max-width: 760px) {
  .dk-search-empty {
    margin: 22px 0 56px;
  }

  .dk-search-empty__inner {
    border-radius: 24px;
    padding: 22px;
  }

  .dk-search-empty__text {
    font-size: 16px;
  }

  .dk-search-empty__actions {
    flex-direction: column;
  }

  .dk-search-empty__actions .dk-btn {
    width: 100%;
  }

  .dk-search-empty__tips {
    grid-template-columns: 1fr;
  }

  .dk-product-search--empty {
    height: 48px;
  }

  .dk-product-search--empty .dk-product-search__input {
    height: 48px !important;
    min-height: 48px !important;
    line-height: 48px !important;
    padding-right: 96px !important;
  }

  .dk-product-search--empty .dk-product-search__submit {
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 16px !important;
  }
}

/* DK SEARCH EMPTY STATE STYLE END */

/* DK SEARCH EMPTY TITLE CLEAN START */

/* На порожньому пошуку прибираємо стандартний заголовок WooCommerce,
   бо власна картка вже має повний заголовок і пояснення. */
body.search-no-results .woocommerce-products-header,
body.search-no-results .woocommerce-products-header__title,
body.search-no-results h1.page-title {
  display: none !important;
}

/* Трохи краще позиціонування empty-state після прибирання стандартного H1 */
body.search-no-results .dk-search-empty {
  margin-top: clamp(34px, 5vw, 72px);
}

/* Обмежуємо ширину, щоб блок не виглядав надто розтягнутим */
body.search-no-results .dk-search-empty {
  width: min(100%, 860px);
}

/* На десктопі картка виглядає краще трохи вище */
body.search-no-results main,
body.search-no-results .site-main,
body.search-no-results .woocommerce {
  min-height: 52vh;
}

/* Mobile */
@media (max-width: 760px) {
  body.search-no-results .dk-search-empty {
    margin-top: 24px;
    width: 100%;
  }
}

/* DK SEARCH EMPTY TITLE CLEAN END */

/* DerevoKraft: product code in catalog cards */
.woocommerce ul.products li.product .dk-loop-product-code {
    margin: 8px 0 10px;
    font-size: 13px;
    line-height: 1.25;
    color: #7a6048;
}

.woocommerce ul.products li.product .dk-loop-product-code__label {
    font-weight: 700;
}

.woocommerce ul.products li.product .dk-loop-product-code__value {
    font-weight: 800;
    color: #8a4f1f;
    letter-spacing: 0.01em;
}

/* DerevoKraft: product code visual polish */
.woocommerce ul.products li.product .dk-loop-product-code {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    max-width: 100%;
    margin: 10px 0 14px;
    padding: 4px 9px;
    border: 1px solid rgba(138, 79, 31, 0.18);
    border-radius: 999px;
    background: #f7eadb;
    color: #7a6048;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
}

.woocommerce ul.products li.product .dk-loop-product-code__label {
    font-weight: 700;
    opacity: 0.85;
}

.woocommerce ul.products li.product .dk-loop-product-code__value {
    color: #8a4f1f;
    font-weight: 900;
    letter-spacing: 0.015em;
}

@media (max-width: 640px) {
    .woocommerce ul.products li.product .dk-loop-product-code {
        margin: 8px 0 12px;
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* DerevoKraft: product code alignment fix */
.woocommerce ul.products li.product .dk-loop-product-code {
    margin-left: 20px;
    margin-right: 20px;
}

@media (max-width: 640px) {
    .woocommerce ul.products li.product .dk-loop-product-code {
        margin-left: 16px;
        margin-right: 16px;
    }
}

/* DerevoKraft footer contacts polish */
.dk-footer-contacts a[href^="tel:"],
.dk-footer-contacts a[href*="t.me"] {
    font-weight: 800;
}

/* DerevoKraft: contact final action buttons polish */
.dk-contact-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.dk-contact-final-cta .dk-contact-final-actions .dk-btn {
    min-width: 168px;
    text-align: center;
}

.dk-contact-final-cta .dk-contact-final-actions .dk-btn--primary {
    background: #ffffff;
    color: #24100a;
    border-color: #ffffff;
}

.dk-contact-final-cta .dk-contact-final-actions .dk-btn--primary:hover,
.dk-contact-final-cta .dk-contact-final-actions .dk-btn--primary:focus-visible {
    background: #f7eadb;
    color: #24100a;
}

@media (max-width: 640px) {
    .dk-contact-final-actions {
        width: 100%;
        justify-content: stretch;
    }

    .dk-contact-final-cta .dk-contact-final-actions .dk-btn {
        width: 100%;
        min-width: 0;
    }
}

/* DerevoKraft: force contact final CTA buttons */
.dk-final-cta.dk-contact-final-cta .dk-contact-final-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.dk-final-cta.dk-contact-final-cta .dk-contact-final-actions a.dk-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 178px !important;
    min-height: 46px !important;
    padding: 0 22px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.dk-final-cta.dk-contact-final-cta .dk-contact-final-actions a.dk-btn--primary {
    background: #ffffff !important;
    color: #24100a !important;
    border: 1px solid #ffffff !important;
}

.dk-final-cta.dk-contact-final-cta .dk-contact-final-actions a.dk-btn--primary:hover,
.dk-final-cta.dk-contact-final-cta .dk-contact-final-actions a.dk-btn--primary:focus-visible {
    background: #f7eadb !important;
    color: #24100a !important;
}

.dk-final-cta.dk-contact-final-cta .dk-contact-final-actions a.dk-btn--light {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
}

.dk-final-cta.dk-contact-final-cta .dk-contact-final-actions a.dk-btn--light:hover,
.dk-final-cta.dk-contact-final-cta .dk-contact-final-actions a.dk-btn--light:focus-visible {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
}

@media (max-width: 640px) {
    .dk-final-cta.dk-contact-final-cta .dk-contact-final-actions {
        width: 100% !important;
        justify-content: stretch !important;
    }

    .dk-final-cta.dk-contact-final-cta .dk-contact-final-actions a.dk-btn {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* DerevoKraft Telegram bot site links */
.dk-btn--telegram-bot {
    white-space: nowrap;
}

.dk-footer-contacts a[href*="derevocraft_bot"] {
    font-weight: 900;
}

.dk-contact-card--bot {
    border-color: rgba(138, 79, 31, 0.22);
    background: linear-gradient(135deg, #fffaf2 0%, #f7eadb 100%);
}

.dk-contact-card--bot .dk-contact-card__value {
    color: #8a4f1f;
    font-weight: 900;
}

.dk-contact-final-cta .dk-contact-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.dk-contact-final-cta .dk-contact-final-actions .dk-btn {
    min-width: 168px;
    text-align: center;
}

@media (max-width: 640px) {
    .dk-contact-final-cta .dk-contact-final-actions {
        width: 100%;
        justify-content: stretch;
    }

    .dk-contact-final-cta .dk-contact-final-actions .dk-btn {
        width: 100%;
        min-width: 0;
    }
}

/* DerevoKraft Viber contact links */
.dk-footer-contacts a[href^="viber:"] {
    font-weight: 900;
}

.dk-contact-card--viber {
    border-color: rgba(111, 71, 150, 0.2);
    background: linear-gradient(135deg, #fffaf2 0%, #f3ecfb 100%);
}

.dk-contact-card--viber .dk-contact-card__value {
    color: #6f4796;
    font-weight: 900;
}

.dk-contact-final-cta .dk-contact-final-actions a[href^="viber:"] {
    border-color: rgba(255, 255, 255, 0.42);
}


/* DK home real width fix 2026-06-12 */
@media (min-width: 1180px) {
  /*
   * Верхня шапка.
   */
  body .site-header .dk-container,
  body .dk-site-header .dk-container,
  body header .dk-container {
    width: min(96vw, 1680px) !important;
    max-width: 1680px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body header nav,
  body .site-header nav,
  body .dk-site-header nav,
  body .dk-main-nav {
    gap: 12px !important;
    column-gap: 12px !important;
    row-gap: 6px !important;
  }

  body header nav a,
  body .site-header nav a,
  body .dk-site-header nav a,
  body .dk-main-nav a {
    font-size: 12px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    letter-spacing: -0.01em !important;
  }

  body header input[type="search"],
  body header input[name="s"],
  body header .search-field,
  body .site-header input[type="search"],
  body .site-header input[name="s"],
  body .site-header .search-field,
  body .dk-site-header input[type="search"],
  body .dk-site-header input[name="s"],
  body .dk-site-header .search-field {
    width: 230px !important;
    min-width: 230px !important;
    max-width: 230px !important;
    font-size: 13px !important;
    box-sizing: border-box !important;
  }

  body header input[type="search"]::placeholder,
  body header input[name="s"]::placeholder,
  body header .search-field::placeholder,
  body .site-header input[type="search"]::placeholder,
  body .site-header input[name="s"]::placeholder,
  body .site-header .search-field::placeholder,
  body .dk-site-header input[type="search"]::placeholder,
  body .dk-site-header input[name="s"]::placeholder,
  body .dk-site-header .search-field::placeholder {
    font-size: 13px !important;
  }

  /*
   * Головна сторінка: розширюємо реальні контейнери під hero,
   * категорії, новинки та інші секції.
   */
  body.home main,
  body.home .site-main,
  body.home #primary,
  body.home .content-area {
    max-width: none !important;
    width: 100% !important;
  }

  body.home main > *,
  body.home .site-main > *,
  body.home #primary > *,
  body.home .content-area > *,
  body.home .entry-content > *,
  body.home section,
  body.home .wp-block-group,
  body.home .dk-section,
  body.home .dk-home-section,
  body.home .dk-hero,
  body.home .dk-home-hero,
  body.home .dk-front-hero,
  body.home .dk-hero-wrap,
  body.home .dk-hero-wrapper,
  body.home .dk-hero-section,
  body.home .dk-hero-card,
  body.home .dk-hero__inner,
  body.home .dk-categories,
  body.home .dk-category-section,
  body.home .dk-products-section,
  body.home .dk-new-products,
  body.home .dk-catalog-section {
    width: min(92vw, 1360px) !important;
    max-width: 1360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /*
   * Якщо всередині секції є ще один контейнер,
   * не даємо йому знову стискати контент до старої вузької ширини.
   */
  body.home main .dk-container,
  body.home .site-main .dk-container,
  body.home .entry-content .dk-container,
  body.home section .dk-container,
  body.home .wp-block-group .dk-container {
    width: 100% !important;
    max-width: 1360px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /*
   * Сітка категорій: дозволяємо карткам займати ширину краще.
   */
  body.home .dk-category-grid,
  body.home .dk-categories-grid,
  body.home .products,
  body.home ul.products {
    width: 100% !important;
    max-width: 1360px !important;
  }
}

@media (min-width: 1500px) {
  body.home main > *,
  body.home .site-main > *,
  body.home #primary > *,
  body.home .content-area > *,
  body.home .entry-content > *,
  body.home section,
  body.home .wp-block-group,
  body.home .dk-section,
  body.home .dk-home-section,
  body.home .dk-hero,
  body.home .dk-home-hero,
  body.home .dk-front-hero,
  body.home .dk-hero-wrap,
  body.home .dk-hero-wrapper,
  body.home .dk-hero-section,
  body.home .dk-hero-card,
  body.home .dk-hero__inner,
  body.home .dk-categories,
  body.home .dk-category-section,
  body.home .dk-products-section,
  body.home .dk-new-products,
  body.home .dk-catalog-section {
    width: min(88vw, 1460px) !important;
    max-width: 1460px !important;
  }

  body.home main .dk-container,
  body.home .site-main .dk-container,
  body.home .entry-content .dk-container,
  body.home section .dk-container,
  body.home .wp-block-group .dk-container,
  body.home .dk-category-grid,
  body.home .dk-categories-grid,
  body.home .products,
  body.home ul.products {
    max-width: 1460px !important;
  }

  body header input[type="search"],
  body header input[name="s"],
  body header .search-field,
  body .site-header input[type="search"],
  body .site-header input[name="s"],
  body .site-header .search-field,
  body .dk-site-header input[type="search"],
  body .dk-site-header input[name="s"],
  body .dk-site-header .search-field {
    width: 245px !important;
    min-width: 245px !important;
    max-width: 245px !important;
  }
}


/* DK footer cleanup and search final 2026-06-12 */
@media (min-width: 1180px) {
  body header input[type="search"],
  body header input[name="s"],
  body header .search-field,
  body .site-header input[type="search"],
  body .site-header input[name="s"],
  body .site-header .search-field,
  body .dk-site-header input[type="search"],
  body .dk-site-header input[name="s"],
  body .dk-site-header .search-field {
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important;
  }

  body header input[type="search"]::placeholder,
  body header input[name="s"]::placeholder,
  body header .search-field::placeholder,
  body .site-header input[type="search"]::placeholder,
  body .site-header input[name="s"]::placeholder,
  body .site-header .search-field::placeholder,
  body .dk-site-header input[type="search"]::placeholder,
  body .dk-site-header input[name="s"]::placeholder,
  body .dk-site-header .search-field::placeholder {
    content: "Пошук";
    font-size: 13px !important;
  }

  footer,
  .site-footer,
  .dk-footer {
    margin-top: 72px !important;
    padding-top: 52px !important;
    padding-bottom: 44px !important;
  }

  footer .dk-container,
  .site-footer .dk-container,
  .dk-footer .dk-container {
    width: min(92vw, 1280px) !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    display: grid !important;
    grid-template-columns: minmax(320px, 1fr) minmax(220px, 320px) !important;
    gap: 56px !important;
    align-items: start !important;
  }

  footer h4,
  .site-footer h4,
  .dk-footer h4 {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    font-size: 16px !important;
  }

  footer p,
  .site-footer p,
  .dk-footer p {
    max-width: 520px !important;
    line-height: 1.6 !important;
  }

  footer a,
  .site-footer a,
  .dk-footer a {
    display: inline-block !important;
    margin-bottom: 10px !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 767px) {
  footer .dk-container,
  .site-footer .dk-container,
  .dk-footer .dk-container {
    display: block !important;
  }

  footer,
  .site-footer,
  .dk-footer {
    padding-top: 36px !important;
    padding-bottom: 32px !important;
  }
}


/* DK clean footer layout 2026-06-12 */
.dk-footer {
  margin-top: 80px;
  padding: 54px 0 46px;
  background: #1a0f0a;
  color: #f7efe4;
}

.dk-footer__inner {
  width: min(92vw, 1360px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(170px, 0.8fr));
  gap: 42px;
  align-items: start;
}

.dk-footer h3,
.dk-footer h4 {
  color: #fff6ea;
  margin: 0 0 16px;
  line-height: 1.2;
}

.dk-footer h3 {
  font-size: 20px;
}

.dk-footer h4 {
  font-size: 15px;
}

.dk-footer p {
  margin: 0;
  max-width: 420px;
  color: rgba(247, 239, 228, 0.82);
  line-height: 1.55;
}

.dk-footer a {
  display: block;
  color: rgba(247, 239, 228, 0.86);
  text-decoration: none;
  margin: 0 0 10px;
  line-height: 1.35;
}

.dk-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .dk-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .dk-footer {
    margin-top: 56px;
    padding: 38px 0 34px;
  }

  .dk-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}


/* DK absolute final footer link layout 2026-06-12 */
.dk-footer .dk-footer__inner {
  width: min(92vw, 1360px) !important;
  max-width: 1360px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(170px, 0.8fr)) !important;
  gap: 42px !important;
  align-items: start !important;
}

.dk-footer .dk-footer__col {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.dk-footer .dk-footer__col a,
.dk-footer a {
  display: block !important;
  width: fit-content !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.35 !important;
  white-space: normal !important;
}

.dk-footer .dk-footer__col h4 {
  display: block !important;
  margin: 0 0 16px 0 !important;
}

.dk-footer .dk-footer__brand p {
  max-width: 420px !important;
}

@media (max-width: 900px) {
  .dk-footer .dk-footer__inner {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 600px) {
  .dk-footer .dk-footer__inner {
    grid-template-columns: 1fr !important;
  }
}

/* DK final nav font and footer contacts 2026-06-12 */
@media (min-width: 1180px) {
  body header nav a,
  body .site-header nav a,
  body .dk-site-header nav a,
  body .dk-main-nav a {
    font-size: 13.5px !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }

  body header nav,
  body .site-header nav,
  body .dk-site-header nav,
  body .dk-main-nav {
    gap: 13px !important;
    column-gap: 13px !important;
  }
}

.dk-footer .dk-footer__inner {
  width: min(94vw, 1460px) !important;
  max-width: 1460px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: minmax(250px, 1.25fr) repeat(4, minmax(155px, 0.8fr)) !important;
  gap: 36px !important;
  align-items: start !important;
}

.dk-footer .dk-footer__col {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.dk-footer .dk-footer__col a,
.dk-footer a {
  display: block !important;
  width: fit-content !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.35 !important;
  white-space: normal !important;
}

.dk-footer .dk-footer__brand p {
  max-width: 390px !important;
}

@media (max-width: 1000px) {
  .dk-footer .dk-footer__inner {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 600px) {
  .dk-footer .dk-footer__inner {
    grid-template-columns: 1fr !important;
  }
}

/* DerevoKraft contact marketplace trust block */
.dk-contact-marketplaces {
    align-items: center;
}

.dk-contact-marketplaces__actions {
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: 360px;
    justify-self: end;
}

.dk-contact-marketplace-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(151, 91, 38, 0.24);
    border-radius: 18px;
    background: rgba(255, 252, 246, 0.72);
    box-shadow: 0 12px 28px rgba(60, 32, 14, 0.08);
    color: #24140f;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dk-contact-marketplace-link:hover,
.dk-contact-marketplace-link:focus {
    transform: translateY(-2px);
    border-color: rgba(151, 91, 38, 0.48);
    box-shadow: 0 16px 34px rgba(60, 32, 14, 0.12);
    text-decoration: none;
}

.dk-contact-marketplace-link span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a5a24;
}

.dk-contact-marketplace-link strong {
    font-size: 18px;
    line-height: 1.15;
    color: #1c0f0b;
}

@media (max-width: 760px) {
    .dk-contact-marketplaces__actions {
        max-width: none;
        justify-self: stretch;
    }

    .dk-contact-marketplace-link {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}
