/*
Theme Name: K DISHA NX
Theme URI: https://kdishanx.com
Author: K DISHA NX
Description: Custom professional e-commerce theme for K DISHA NX
Version: 1.0
Text Domain: k-disha-nx
*/

/* ================================
   K DISHA NX - Global Styles
================================ */

:root {
    --kdn-bg: #f8f5ef;
    --kdn-white: #ffffff;
    --kdn-dark: #1d1d1d;
    --kdn-text: #353535;
    --kdn-muted: #777;
    --kdn-border: #e7e1d8;
    --kdn-accent: #a77938;
    --kdn-soft: #f1ebe2;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--kdn-text);
    background: var(--kdn-white);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.kdn-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ================================
   TOP BAR
================================ */

.kdn-topbar {
    background: var(--kdn-dark);
    color: #fff;
    font-size: 12px;
    letter-spacing: .4px;
}

.kdn-topbar .kdn-container {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ================================
   MAIN HEADER
================================ */

.kdn-main-header {
    background: #fff;
    border-bottom: 1px solid var(--kdn-border);
}

.kdn-header-row {
    min-height: 90px;
    display: grid;
    grid-template-columns: 230px 1fr auto;
    align-items: center;
    gap: 35px;
}

.kdn-brand a {
    display: flex;
    flex-direction: column;
}

.kdn-brand strong {
    color: var(--kdn-dark);
    font-size: 25px;
    letter-spacing: 2px;
}

.kdn-brand small {
    margin-top: 4px;
    color: var(--kdn-muted);
    font-size: 9px;
    letter-spacing: 2px;
}

.kdn-search form {
    display: flex;
    width: 100%;
}

.kdn-search input[type="search"] {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border: 1px solid var(--kdn-border);
    border-radius: 4px 0 0 4px;
    outline: none;
}

.kdn-search input[type="submit"] {
    min-width: 90px;
    border: 0;
    background: var(--kdn-dark);
    color: #fff;
    cursor: pointer;
}

.kdn-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    font-size: 13px;
}


/* ================================
   NAVIGATION
================================ */

.kdn-nav {
    background: #fff;
    border-bottom: 1px solid var(--kdn-border);
}

.kdn-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

.kdn-menu a {
    color: var(--kdn-dark);
    font-size: 13px;
    font-weight: 600;
}


/* ================================
   HERO
================================ */

.kdn-hero {
    background: var(--kdn-bg);
}

.kdn-hero-grid {
    min-height: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.kdn-eyebrow {
    color: var(--kdn-accent);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.kdn-hero h1 {
    margin: 14px 0 18px;
    color: var(--kdn-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 6vw, 82px);
    line-height: .95;
    font-weight: 500;
}

.kdn-hero p {
    max-width: 500px;
    margin-bottom: 28px;
    color: var(--kdn-muted);
    font-size: 16px;
    line-height: 1.7;
}

.kdn-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.kdn-btn {
    display: inline-flex;
    min-height: 45px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
}

.kdn-btn-dark {
    background: var(--kdn-dark);
    color: #fff;
}

.kdn-btn-outline {
    border: 1px solid var(--kdn-dark);
    color: var(--kdn-dark);
}

.kdn-btn-light {
    background: #fff;
    color: var(--kdn-dark);
}

.kdn-image-placeholder {
    min-height: 420px;
    border-radius: 6px;
    background: #e8dfd2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kdn-muted);
}


/* ================================
   BENEFITS
================================ */

.kdn-benefits {
    border-bottom: 1px solid var(--kdn-border);
}

.kdn-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.kdn-benefits-grid > div {
    padding: 25px 15px;
    text-align: center;
    border-right: 1px solid var(--kdn-border);
}

.kdn-benefits-grid > div:last-child {
    border-right: 0;
}

.kdn-benefits strong,
.kdn-benefits span {
    display: block;
}

.kdn-benefits strong {
    color: var(--kdn-dark);
    font-size: 13px;
}

.kdn-benefits span {
    margin-top: 5px;
    color: var(--kdn-muted);
    font-size: 11px;
}


/* ================================
   GENERAL SECTIONS
================================ */

.kdn-section {
    padding: 75px 0;
}

.kdn-section-title {
    margin: 0 0 38px;
    color: var(--kdn-dark);
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
}

.kdn-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.kdn-category-card {
    min-height: 210px;
    padding: 20px;
    background: var(--kdn-soft);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-weight: 700;
}

.kdn-product-placeholder {
    min-height: 250px;
    background: #fafafa;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ================================
   OFFER
================================ */

.kdn-offer {
    padding: 75px 0;
    background: var(--kdn-dark);
    color: #fff;
    text-align: center;
}

.kdn-offer h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
}

.kdn-offer p {
    margin-bottom: 25px;
}


/* ================================
   WHY CHOOSE US
================================ */

.kdn-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.kdn-why-grid > div {
    padding: 30px 15px;
    background: var(--kdn-bg);
    text-align: center;
    font-weight: 700;
}


/* ================================
   FOOTER
================================ */

.kdn-footer {
    padding: 65px 0 25px;
    background: #151515;
    color: #ddd;
}

.kdn-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 45px;
}

.kdn-footer h3,
.kdn-footer h4 {
    color: #fff;
}

.kdn-footer a {
    display: block;
    margin: 10px 0;
    color: #bbb;
    font-size: 13px;
}

.kdn-copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 12px;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {

    .kdn-header-row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px 0;
    }

    .kdn-actions {
        flex-wrap: wrap;
    }

    .kdn-menu {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .kdn-hero-grid {
        grid-template-columns: 1fr;
        padding: 55px 0;
    }

    .kdn-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kdn-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kdn-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kdn-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .kdn-container {
        width: min(100% - 28px, 1180px);
    }

    .kdn-topbar .kdn-container {
        justify-content: center;
    }

    .kdn-topbar span:last-child {
        display: none;
    }

    .kdn-hero h1 {
        font-size: 48px;
    }

    .kdn-benefits-grid,
    .kdn-category-grid,
    .kdn-why-grid,
    .kdn-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* K DISHA NX Header Logo */
.kdn-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}

.kdn-brand a {
    display: flex;
    align-items: center;
}

.kdn-main-header {
    padding: 12px 0;
}

.kdn-header-row {
    align-items: center;
}

/* =========================================
   K DISHA NX - PREMIUM HEADER FINAL
   ========================================= */

/* Main header */
.kdn-main-header {
    padding: 14px 0;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.kdn-header-row {
    display: grid;
    grid-template-columns: 260px minmax(320px, 1fr) auto;
    align-items: center;
    gap: 40px;
    min-height: 90px;
}

/* Logo */
.kdn-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
}

/* Search area */
.kdn-search {
    width: 100%;
    max-width: 520px;
    justify-self: center;
}

.kdn-search form {
    display: flex;
    width: 100%;
}

.kdn-search input[type="search"] {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #dddddd;
    border-right: 0;
    outline: none;
    background: #ffffff;
}

.kdn-search input[type="submit"] {
    height: 44px;
    padding: 0 22px;
    border: 0;
    background: #111111;
    color: #ffffff;
    cursor: pointer;
}

/* Account / Wishlist / Cart */
.kdn-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    white-space: nowrap;
}

.kdn-actions a {
    color: #111111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.kdn-actions a:hover {
    color: #a77938;
}

/* Navigation */
.kdn-nav {
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.kdn-nav .kdn-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 46px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kdn-nav .kdn-menu > li > a {
    display: block;
    padding: 18px 0;
    color: #111111;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* Desktop spacing */
@media (max-width: 1000px) {
    .kdn-header-row {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .kdn-actions {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .kdn-header-row {
        display: flex;
        flex-direction: column;
    }

    .kdn-logo {
        width: 75px;
        height: 75px;
    }

    .kdn-search {
        max-width: 100%;
    }

    .kdn-nav .kdn-menu {
        gap: 18px;
        flex-wrap: wrap;
    }
}

/* ==================================================
   K DISHA NX - PREMIUM HEADER DESIGN
   ================================================== */

/* Main header white area */
.kdn-main-header {
    background: #ffffff;
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
}

.kdn-header-row {
    display: grid;
    grid-template-columns: 300px minmax(320px, 1fr) 320px;
    align-items: center;
    gap: 35px;
    min-height: 92px;
}

/* Brand / Logo */
.kdn-brand a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.kdn-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
    display: block;
}

/* Search */
.kdn-search {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.kdn-search form {
    display: flex;
    width: 100%;
}

.kdn-search input[type="search"] {
    flex: 1;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #dddddd;
    border-right: 0;
    outline: none;
    font-size: 14px;
    background: #ffffff;
}

.kdn-search input[type="submit"] {
    height: 44px;
    min-width: 58px;
    padding: 0 18px;
    border: 0;
    background: #111111;
    color: #ffffff;
    cursor: pointer;
}

/* Login / Wishlist / Cart */
.kdn-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    white-space: nowrap;
}

.kdn-actions a {
    color: #111111;
    text-decoration: none;
    font-size: 14px;
}

.kdn-actions a:hover {
    color: #b7791f;
}

/* Navigation */
.kdn-nav {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.kdn-nav .kdn-container {
    display: flex;
    justify-content: center;
}

.kdn-nav .kdn-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.kdn-nav .kdn-menu > li > a {
    display: block;
    padding: 18px 0;
    color: #111111;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2px;
}

.kdn-nav .kdn-menu > li > a:hover {
    color: #b7791f;
}

/* K DISHA NX Premium Brand Header */
.kdn-brand a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.kdn-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
    display: block;
}

.kdn-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kdn-brand-text strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
    color: #111111;
    white-space: nowrap;
}

.kdn-brand-text span {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.2px;
    color: #b7791f;
    white-space: nowrap;
}

/* Fix brand alignment */
.kdn-brand {
    display: flex;
    align-items: center;
}

.kdn-brand > a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px;
}

.kdn-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.kdn-brand-text strong,
.kdn-brand-text span {
    display: block;
}

/* FINAL HEADER BRAND ALIGNMENT */

.kdn-brand {
    display: flex !important;
    align-items: center !important;
}

.kdn-brand > a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
}

.kdn-brand .kdn-logo {
    width: 95px !important;
    height: 95px !important;
    flex-shrink: 0 !important;
}

.kdn-brand-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
}

.kdn-brand-text strong {
    font-size: 30px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.kdn-brand-text span {
    margin-top: 7px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
}

/* K DISHA NX MASTER HEADER */

.kdn-brand {
    width: auto !important;
    display: block !important;
}

.kdn-brand > a {
    display: grid !important;
    grid-template-columns: 72px auto !important;
    column-gap: 16px !important;
    align-items: center !important;
    width: max-content !important;
    text-decoration: none !important;
}

.kdn-brand .kdn-logo {
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    min-width: 72px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
}

.kdn-brand .kdn-brand-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    width: max-content !important;
}

.kdn-brand .kdn-brand-text strong {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}

.kdn-name-red {
    color: #e00000 !important;
}

.kdn-name-blue {
    color: #123ca6 !important;
}

.kdn-brand .kdn-tagline {
    display: block !important;
    margin-top: 7px !important;
    color: #111111 !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-align: center !important;
}

/* MASTER BRAND NAME FINAL FIX */

.kdn-brand-text strong {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    white-space: nowrap !important;
}

.kdn-brand-text strong .kdn-name-red {
    display: inline !important;
    color: #e00000 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.kdn-brand-text strong .kdn-name-blue {
    display: inline !important;
    color: #123ca6 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.kdn-brand-text .kdn-tagline {
    display: block !important;
    color: #111111 !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
    text-align: center !important;
    margin-top: 6px !important;
}

/* MASTER HEADER POSITION FIX */

.kdn-brand {
    display: flex !important;
    align-items: center !important;
    width: auto !important;
}

.kdn-brand > a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: auto !important;
}

.kdn-brand .kdn-logo {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    margin: 0 !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

.kdn-brand .kdn-brand-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    margin: 0 !important;
}

.kdn-brand .kdn-brand-text strong {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    white-space: nowrap !important;
}

/* FINAL HEADER ROW ALIGNMENT */

.kdn-header-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.kdn-brand {
    align-self: center !important;
}

.kdn-brand > a {
    align-items: center !important;
}

.kdn-search,
.kdn-actions {
    align-self: center !important;
}

/* KDN HEADER COMPACT SPACING - SAFE */
.kdn-main-header {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}

.kdn-header-row {
    min-height: 120px !important;
}

/* KDN NAVIGATION - PREMIUM SAFE */

.kdn-nav {
    background: #ffffff !important;
    border-top: 1px solid #eeeeee !important;
    border-bottom: 1px solid #eeeeee !important;
}

.kdn-nav .kdn-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.kdn-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 52px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.kdn-menu li {
    margin: 0 !important;
    padding: 0 !important;
}

.kdn-menu li a {
    display: block !important;
    padding: 20px 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    color: #111111 !important;
}

.kdn-menu li a:hover,
.kdn-menu .current-menu-item > a {
    color: #b7791f !important;
}

/* KDN COMPACT PREMIUM HEADER */

.kdn-main-header {
    padding: 18px 0 !important;
    min-height: 0 !important;
}

.kdn-header-row {
    display: grid !important;
    grid-template-columns: 1fr 420px 1fr !important;
    align-items: center !important;
    gap: 30px !important;
    min-height: 0 !important;
}

.kdn-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
}

.kdn-search {
    margin: 0 auto !important;
}

.kdn-actions {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* FINAL HERO IMAGE FIX - DO NOT DELETE */

.kdn-hero-image {
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 14px !important;
}

.kdn-hero-main-image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 14px !important;
}

/* KDN HERO TEXT + BUTTON POLISH */

.kdn-hero-content {
    padding-right: 30px !important;
}

.kdn-eyebrow {
    font-size: 15px !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: #b7791f !important;
    font-weight: 600 !important;
}

.kdn-hero-content h1 {
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 72px !important;
    line-height: 0.95 !important;
    font-weight: 500 !important;
    color: #1b1b1b !important;
    margin: 18px 0 24px !important;
}

.kdn-hero-content p {
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #666666 !important;
    max-width: 560px !important;
}

.kdn-hero-actions {
    display: flex !important;
    gap: 14px !important;
    margin-top: 30px !important;
}

.kdn-btn {
    padding: 15px 28px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
}

.kdn-btn-dark {
    background: #7a0f0f !important;
    color: #ffffff !important;
    border-color: #7a0f0f !important;
}

.kdn-btn-outline {
    background: transparent !important;
    color: #9b6a16 !important;
    border: 1px solid #b7791f !important;
}

/* KDN HERO - REMOVE EXTRA TOP/BOTTOM SPACE */

.kdn-hero {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    min-height: auto !important;
}

.kdn-hero-grid {
    min-height: auto !important;
    align-items: center !important;
}

/* KDN PREMIUM BENEFITS STRIP */

.kdn-benefits {
    background: #ffffff !important;
    border-top: 1px solid #eadfce !important;
    border-bottom: 1px solid #eadfce !important;
    padding: 0 !important;
}

.kdn-benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    max-width: 1500px !important;
    margin: 0 auto !important;
}

.kdn-benefits-grid > div {
    text-align: center !important;
    padding: 22px 15px !important;
    border-right: 1px solid #eadfce !important;
}

.kdn-benefits-grid > div:last-child {
    border-right: none !important;
}

.kdn-benefits-grid strong {
    display: block !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #211b18 !important;
    margin-bottom: 5px !important;
}

.kdn-benefits-grid span {
    display: block !important;
    font-size: 13px !important;
    color: #786e67 !important;
    line-height: 1.4 !important;
}

/* KDN CATEGORY CARDS - PREMIUM */

.kdn-category-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
    margin-top: 35px !important;
}

.kdn-category-card {
    display: block !important;
    text-decoration: none !important;
    color: #1d1d1d !important;
    background: #ffffff !important;
    border: 1px solid #eee5d9 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.kdn-category-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08) !important;
}

.kdn-category-photo {
    height: 250px !important;
    background: #f4ede4 !important;
    background-size: cover !important;
    background-position: center !important;
}

.kdn-category-card span {
    display: block !important;
    padding: 16px 12px !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

/* NEW ARRIVALS CATEGORY IMAGE */

.new-arrivals-photo {
    background-image: url("https://kdishanx.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-19-2026-07_10_21-PM.png") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

/* KURTIS CATEGORY IMAGE */

.kurtis-photo {
    background-image: url("https://kdishanx.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-19-2026-06_52_01-PM.png") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

/* SUITS CATEGORY IMAGE */

.suits-photo {
    background-image: url("https://kdishanx.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-19-2026-06_52_30-PM.png") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

/* CO-ORD CATEGORY IMAGE */

.coord-sets-photo {
    background-image: url("https://kdishanx.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-19-2026-09_01_42-PM.png") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

/* DRESSES CATEGORY IMAGE */

.dresses-photo {
    background-image: url("https://kdishanx.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-19-2026-06_54_54-PM.jpg") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

/* VELVET CATEGORY IMAGE */

.velvet-suits-photo {
    background-image: url("https://kdishanx.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-19-2026-08_27_45-PM.png") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}
/* KDN BEST SELLERS - PREMIUM */

.kdn-best-sellers {
    padding: 70px 0 !important;
    background: #ffffff !important;
}

.kdn-best-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: end !important;
    gap: 20px !important;
    margin-bottom: 34px !important;
}

.kdn-best-header p {
    margin: 8px 0 0 !important;
    color: #766c64 !important;
    font-size: 15px !important;
}

.kdn-view-all {
    text-decoration: none !important;
    color: #8f1111 !important;
    border: 1px solid #d8c6b3 !important;
    padding: 12px 18px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
}

.kdn-best-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 18px !important;
}

.kdn-product-card {
    background: #ffffff !important;
    border: 1px solid #eee5dc !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05) !important;
    transition: transform .25s ease, box-shadow .25s ease !important;
}

.kdn-product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.10) !important;
}

.kdn-product-image {
    height: 290px !important;
    background: #f5eee6 !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

.kdn-product-card h3 {
    font-size: 15px !important;
    line-height: 1.4 !important;
    margin: 14px 14px 8px !important;
    color: #231d19 !important;
}

.kdn-product-price {
    margin: 0 14px 14px !important;
    color: #8f1111 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
}

.kdn-product-btn {
    display: block !important;
    margin: 0 14px 16px !important;
    padding: 11px 10px !important;
    text-align: center !important;
    text-decoration: none !important;
    background: #8f1111 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

/* REMOVE EXTRA GAP BELOW SHOP BY CATEGORY */

.kdn-section:has(.kdn-category-grid) {
    padding-bottom: 28px !important;
    margin-bottom: 0 !important;
}

.kdn-category-grid {
    margin-bottom: 0 !important;
}

.kdn-best-sellers {
    padding-top: 35px !important;
}

/* ===== REMOVE EXTRA GAP ABOVE SHOP BY CATEGORY ===== */

.kdn-benefits {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.kdn-benefits + .kdn-section {
    margin-top: 0 !important;
    padding-top: 28px !important;
}

.kdn-section-title {
    margin-top: 0 !important;
    margin-bottom: 35px !important;
}

/* ===== COMPACT BEST SELLERS HEADER ===== */

.kdn-best-sellers {
    padding-top: 25px !important;
    padding-bottom: 20px !important;
}

.kdn-best-sellers-header {
    margin-bottom: 20px !important;
}

.kdn-best-sellers .kdn-section-title {
    margin: 0 0 8px 0 !important;
}

.kdn-best-sellers p {
    margin: 0 !important;
}

.kdn-best-sellers .kdn-product-grid {
    margin-top: 20px !important;
}

/* ===== K DISHA NX PREMIUM OFFER ===== */

.kdn-premium-offer {
    padding: 24px 0 !important;
    background: #ffffff !important;
}

.kdn-offer-wrap {
    min-height: 190px !important;
    padding: 34px 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px !important;

    background:
        linear-gradient(110deg, #8f1111 0%, #a71616 58%, #6f0b0b 100%) !important;

    border-radius: 16px !important;
    overflow: hidden !important;
}

.kdn-offer-content {
    max-width: 720px !important;
}

.kdn-offer-label {
    display: inline-block !important;
    margin-bottom: 10px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    color: #f5d7a6 !important;
}

.kdn-offer-content h2 {
    margin: 0 0 10px !important;
    color: #ffffff !important;
    font-size: 36px !important;
    line-height: 1.15 !important;
}

.kdn-offer-content p {
    margin: 0 0 22px !important;
    color: rgba(255,255,255,.86) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.kdn-offer-btn {
    display: inline-block !important;
    padding: 12px 22px !important;
    background: #ffffff !important;
    color: #8f1111 !important;
    text-decoration: none !important;
    border-radius: 7px !important;
    font-weight: 700 !important;
}

.kdn-offer-badge {
    width: 140px !important;
    height: 140px !important;
    min-width: 140px !important;
    border-radius: 50% !important;

    background: #fff8ec !important;
    border: 2px solid #e6c58a !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    color: #8f1111 !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.15) !important;
}

.kdn-offer-badge span {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}

.kdn-offer-badge strong {
    font-size: 38px !important;
    line-height: 1 !important;
    margin: 5px 0 !important;
}

/* ===== WHY CHOOSE K DISHA NX ===== */

.kdn-why-section {
    padding: 48px 0 55px !important;
    background: #fffaf5 !important;
}

.kdn-why-heading {
    text-align: center !important;
    margin-bottom: 30px !important;
}

.kdn-why-heading > span {
    display: block !important;
    margin-bottom: 8px !important;
    color: #a36a22 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
}

.kdn-why-heading h2 {
    margin: 0 0 8px !important;
    color: #211b18 !important;
    font-size: 34px !important;
    line-height: 1.2 !important;
}

.kdn-why-heading p {
    margin: 0 !important;
    color: #766c64 !important;
    font-size: 15px !important;
}

.kdn-why-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
}

.kdn-why-card {
    padding: 26px 18px !important;
    text-align: center !important;
    background: #ffffff !important;
    border: 1px solid #eadfd3 !important;
    border-radius: 14px !important;
    box-shadow: 0 5px 18px rgba(0,0,0,.04) !important;
    transition: transform .25s ease, box-shadow .25s ease !important;
}

.kdn-why-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.08) !important;
}

.kdn-why-icon {
    width: 48px !important;
    height: 48px !important;
    margin: 0 auto 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #fff3e3 !important;
    color: #8f1111 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

.kdn-why-card h3 {
    margin: 0 0 8px !important;
    color: #211b18 !important;
    font-size: 16px !important;
}

.kdn-why-card p {
    margin: 0 !important;
    color: #746b64 !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

/* ===== K DISHA NX PREMIUM FOOTER ===== */

.kdn-footer {
    background: #151515 !important;
    color: #ffffff !important;
    padding: 58px 0 0 !important;
}

.kdn-footer-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
    gap: 55px !important;
    padding-bottom: 45px !important;
}

.kdn-footer h3 {
    margin: 0 0 14px !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 28px !important;
    color: #ffffff !important;
}

.kdn-footer h4 {
    margin: 0 0 18px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    letter-spacing: .4px !important;
}

.kdn-footer p {
    margin: 0 0 17px !important;
    max-width: 320px !important;
    color: #bcbcbc !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

.kdn-footer-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.kdn-footer-column a {
    display: block !important;
    margin-bottom: 10px !important;
    color: #cfcfcf !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: color .2s ease !important;
}

.kdn-footer-column a:hover {
    color: #d6a451 !important;
}

.kdn-footer-social {
    display: flex !important;
    gap: 10px !important;
    margin-top: 20px !important;
}

.kdn-footer-social a {
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #454545 !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

.kdn-footer-social a:hover {
    background: #8f1111 !important;
    border-color: #8f1111 !important;
}

.kdn-footer-bottom {
    min-height: 62px !important;
    border-top: 1px solid #343434 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px !important;
    color: #999999 !important;
    font-size: 13px !important;
}

/* Best Seller - Premium Kurti Set */
.product-one {
    background-image: url("https://kdishanx.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-19-2026-08_04_23-PM.png") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

/* Best Seller - Designer Suit Set */
.product-two {
    background-image: url("https://kdishanx.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-19-2026-07_57_40-PM.png") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

/* Best Seller - Premium Co-ord Set */
.product-three {
    background-image: url("https://kdishanx.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-19-2026-09_18_09-PM.png") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

/* Best Seller - Printed Dress */
.product-four {
    background-image: url("https://kdishanx.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-19-2026-09_26_46-PM.png") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

/* Best Seller - Designer Velvet Suit */
.product-five {
    background-image: url("https://kdishanx.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-19-2026-09_39_08-PM.png") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

/* Best Seller - New Arrival Set */
.product-six {
    background-image: url("https://kdishanx.com/wp-content/uploads/2026/08/ChatGPT-Image-Aug-19-2026-09_43_26-PM.png") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}

/* ================================
   NEW ARRIVALS PAGE
================================ */

.kdn-new-arrivals-page {
    background: #fff;
}

.kdn-new-arrivals-hero {
    padding: 70px 0 35px;
    text-align: center;
    background: #fffaf5;
    border-bottom: 1px solid #f1e4d7;
}

.kdn-new-arrivals-hero .kdn-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #b87716;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
}

.kdn-new-arrivals-hero h1 {
    margin: 0 0 14px;
    font-size: 52px;
    line-height: 1.1;
    font-family: Georgia, "Times New Roman", serif;
    color: #1f1b18;
}

.kdn-new-arrivals-hero p {
    margin: 0;
    font-size: 18px;
    color: #6f6258;
}

.kdn-new-arrivals-products {
    padding: 55px 0 80px;
}

.kdn-new-arrivals-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 28px !important;
    margin: 0 !important;
}

.kdn-new-arrivals-products ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 0 22px !important;
    background: #fff;
    border: 1px solid #eadfd4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(50, 30, 20, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.kdn-new-arrivals-products ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(50, 30, 20, 0.10);
}

.kdn-new-arrivals-products ul.products li.product img {
    width: 100% !important;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    margin: 0 0 18px !important;
}

.kdn-new-arrivals-products .woocommerce-loop-product__title {
    padding: 0 18px !important;
    margin: 0 0 8px !important;
    font-size: 20px !important;
    color: #1f1b18;
}

.kdn-new-arrivals-products .price {
    display: block !important;
    padding: 0 18px;
    margin-bottom: 16px !important;
    color: #a11212 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

.kdn-new-arrivals-products a.button {
    display: block !important;
    margin: 0 18px !important;
    padding: 14px 18px !important;
    text-align: center;
    background: #a80f0f !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.kdn-new-arrivals-products a.button:hover {
    background: #7f0808 !important;
}

@media (max-width: 1000px) {
    .kdn-new-arrivals-products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .kdn-new-arrivals-hero {
        padding: 45px 20px 28px;
    }

    .kdn-new-arrivals-hero h1 {
        font-size: 38px;
    }

    .kdn-new-arrivals-products {
        padding: 35px 18px 55px;
    }

    .kdn-new-arrivals-products ul.products {
        grid-template-columns: 1fr !important;
    }


/* ================================
   PROFESSIONAL NEW ARRIVALS PAGE
================================ */

.kdn-na-page {
    background: #fff;
}

.kdn-na-top {
    padding: 28px 0 18px;
    border-bottom: 1px solid #eee4da;
}

.kdn-na-breadcrumb {
    font-size: 13px;
    color: #777;
    margin-bottom: 14px;
}

.kdn-na-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

.kdn-na-heading-row h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    letter-spacing: 1px;
    color: #1f1b18;
}

.kdn-na-heading-row p {
    margin: 7px 0 0;
    color: #6f6258;
}

.kdn-na-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.kdn-na-sort select {
    padding: 9px 34px 9px 12px;
    border: 1px solid #ddd3ca;
    border-radius: 6px;
    background: #fff;
}

.kdn-na-category-strip {
    padding: 18px 0;
    border-bottom: 1px solid #eee4da;
}

.kdn-na-categories {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.kdn-na-cat {
    min-width: 74px;
    text-align: center;
    text-decoration: none;
    color: #222;
}

.kdn-na-cat-circle {
    width: 58px;
    height: 58px;
    margin: 0 auto 7px;
    border-radius: 50%;
    border: 1px solid #ead8c9;
    background: #fff8f1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 12px;
    font-weight: 700;
}

.kdn-na-cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kdn-na-cat.active .kdn-na-cat-circle {
    border: 2px solid #b80f0f;
}

.kdn-na-main {
    padding: 26px 0 45px;
}

.kdn-na-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 26px;
}

.kdn-na-sidebar {
    border: 1px solid #eadfd5;
    border-radius: 10px;
    padding: 16px;
    align-self: start;
    position: sticky;
    top: 20px;
    background: #fff;
}

.kdn-filter-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee4da;
}

.kdn-filter-head button {
    border: 0;
    background: none;
    color: #b30e0e;
    font-size: 12px;
    cursor: pointer;
}

.kdn-filter-block {
    padding: 15px 0;
    border-bottom: 1px solid #eee4da;
}

.kdn-filter-block h3 {
    font-size: 14px;
    margin: 0 0 10px;
}

.kdn-filter-block label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    font-size: 13px;
}

.kdn-filter-block label small {
    margin-left: auto;
    color: #888;
}

.kdn-size-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.kdn-size-grid button {
    padding: 7px 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.kdn-color-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kdn-color-row span {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.12);
}

.c-red { background: #c91f28; }
.c-pink { background: #e84679; }
.c-green { background: #3b8d50; }
.c-blue { background: #2954a3; }
.c-black { background: #171717; }
.c-yellow { background: #f0c51d; }

.kdn-filter-block input[type="range"] {
    width: 100%;
}

.kdn-price-values {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 5px;
}

.kdn-apply-filter {
    width: 100%;
    margin-top: 16px;
    padding: 11px;
    background: #111;
    color: #fff;
    border: 0;
    border-radius: 5px;
    font-weight: 700;
}

.kdn-na-count-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    color: #666;
    font-size: 13px;
}

.kdn-view-switch button {
    border: 1px solid #ddd;
    background: #fff;
    padding: 6px 9px;
}

.kdn-view-switch .active {
    color: #b30e0e;
}

.kdn-na-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.kdn-na-card {
    border: 1px solid #eadfd5;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,.04);
    transition: .2s ease;
}

.kdn-na-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.kdn-na-img-wrap {
    position: relative;
    background: #faf7f3;
}

.kdn-na-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
}

.kdn-new-badge {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 2;
    background: #e11;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 7px;
    border-radius: 4px;
}

.kdn-heart {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: rgba(255,255,255,.92);
    font-size: 18px;
}

.kdn-na-card-body {
    padding: 12px;
}

.kdn-na-card h2 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.35;
}

.kdn-na-card h2 a {
    color: #1e1e1e;
    text-decoration: none;
}

.kdn-na-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.kdn-na-price {
    font-weight: 700;
    color: #111;
}

.kdn-na-price .amount {
    color: #111;
}

.kdn-na-rating {
    font-size: 12px;
    color: #e79a00;
}

.kdn-na-actions {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 7px;
}

.kdn-quick-view,
.kdn-add-cart {
    padding: 9px 7px;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.kdn-quick-view {
    border: 1px solid #d8cec5;
    color: #222;
    background: #fff;
}

.kdn-add-cart {
    background: #111;
    color: #fff;
}

.kdn-na-trust {
    border-top: 1px solid #eee4da;
    border-bottom: 1px solid #eee4da;
    background: #fffaf5;
}

.kdn-na-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.kdn-na-trust-grid div {
    padding: 18px 12px;
    text-align: center;
    border-right: 1px solid #eee4da;
}

.kdn-na-trust-grid div:last-child {
    border-right: 0;
}

.kdn-na-trust-grid strong {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
}

.kdn-na-trust-grid span {
    font-size: 11px;
    color: #777;
}

@media (max-width: 1200px) {
    .kdn-na-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .kdn-na-layout {
        grid-template-columns: 1fr;
    }

    .kdn-na-sidebar {
        position: static;
    }

    .kdn-na-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kdn-na-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .kdn-na-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .kdn-na-heading-row h1 {
        font-size: 32px;
    }

    .kdn-na-products-grid {
        grid-template-columns: 1fr;
    }

    .kdn-na-trust-grid {
        grid-template-columns: 1fr;
    }
}