/*
Theme Name: Drvena Lija Turbo
Version: 3.6
*/
/* =========================== */
/* CUSTOM PROPERTIES           */
/* =========================== */
:root {
    --bg: #f7f1e8;
    --cream: #fffdf9;
    --green: #7b955c;
    --orange: #f2a14a;
    --text: #3d2f2a;
}
/* =========================== */
/* RESET & BASE                */
/* =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    overflow-x: clip;
    overflow-y: visible;
}
body {
    font-family: 'Nunito',sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: clip;
    overflow-y: visible;
}
.container {
    width: min(1380px,92%);
    margin: auto;
}
/* =========================== */
/* HEADER & NAVIGATION         */
/* =========================== */
header {
    background: rgba(255,253,249,.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
    transition: transform 0.3s ease;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}
.logo img {
    height: 92px;
    display: block;
}
nav {
    margin-left: auto;
    margin-right: 24px;
}
nav ul {
    display: flex;
    gap: 38px;
    list-style: none;
}
nav a {
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    color: var(--text);
    transition: .25s;
}
nav a:hover {
    color: var(--orange);
}
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #fff8ef;
    border: 2px solid rgba(242,161,74,.35);
    color: var(--text);
    text-decoration: none;
    transition: background .2s ease,border-color .2s ease,color .2s ease;
    flex-shrink: 0;
}
.nav-cart svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.2px;
}
.nav-cart:hover {
    background: #f2a14a;
    border-color: #f2a14a;
    color: #fff;
}
.nav-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #f2a14a;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2.5px solid #fffdf9;
    box-shadow: 0 2px 8px rgba(242,161,74,.4);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text);
    border-radius: 999px;
    display: block;
}
@media(max-width:900px) {
    header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    header nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        margin: 0;
        margin-right: 0;
        padding: 120px 40px;
        width: 280px;
        height: 100%;
        background: #fffdf9;
        box-shadow: -10px 0 30px rgba(0,0,0,.08);
        transition: transform .35s ease;
        display: flex;
        z-index: 1000;
        transform: translateX(100%);
        box-sizing: border-box;
        overflow-y: auto;
    }
    body.mobile-open header nav {
        transform: translateX(0);
    }
    header nav ul {
        flex-direction: column;
        gap: 28px;
        width: 100%;
    }
    header nav a {
        font-size: 22px;
        display: block;
    }
    body.mobile-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        left: 0 !important;
        top: 0 !important;
    }
    .nav-cart {
        width: 38px;
        height: 38px;
    }
}
/* =========================== */
/* HERO                        */
/* =========================== */
.hero {
    position: relative;
    isolation: isolate;
    padding: 105px 0 170px;
    min-height: 680px;
    background: linear-gradient(180deg,#fffdf9 0%,#f7efe6 100%);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 58%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg,#fffdf9 0%,#fffdf9 42%,rgba(255,253,249,.8) 62%,rgba(255,253,249,0) 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0,690px) 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 4;
    min-height: 470px;
}
.hero h1 {
    font-size: 96px;
    line-height: .92;
    font-weight: 900;
    letter-spacing: -2.5px;
    max-width: 760px;
    margin-bottom: 30px;
    text-shadow: 0 4px 18px rgba(255,253,249,.78);
}
.hero p {
    font-size: 28px;
    line-height: 1.45;
    letter-spacing: .2px;
    max-width: 620px;
    margin-bottom: 42px;
    color: #54443c;
    text-shadow: 0 3px 14px rgba(255,253,249,.85);
}
.hero h1 span {
    color: var(--green);
}
.buttons {
    display: flex;
    gap: 22px;
}
.hero-fluid-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70vw;
    z-index: 1;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}
.hero-fluid-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg,rgba(255,253,249,.68) 0%,rgba(255,253,249,.42) 24%,rgba(255,253,249,.16) 44%,rgba(255,253,249,0) 66%),
linear-gradient(180deg,rgba(255,253,249,0) 74%,rgba(247,239,230,.34) 92%,#f7efe6 100%);
}
.hero-fluid-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse at 22% 52%,rgba(255,253,249,.38) 0%,rgba(255,253,249,.22) 22%,rgba(255,253,249,.08) 44%,rgba(255,253,249,0) 70%);
}
.hero-fluid-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center right;
    filter: saturate(1.08) contrast(1.06);
}
.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}
.wave path {
    fill: #fffdf9;
}
@media(max-width:1200px) {
    .hero::before {
        display: none;
    }
    .hero {
        padding: 80px 0 145px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-fluid-image {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        margin-top: 38px;
        border-radius: 30px;
        box-shadow: 0 20px 52px rgba(61,47,42,.08);
    }
    .hero-fluid-image::before,
.hero-fluid-image::after {
        display: none;
    }
    .hero-fluid-image img {
        filter: none;
        object-position: center;
    }
    .hero h1 {
        font-size: 72px;
    }
}
@media(max-width:700px) {
    .hero {
        min-height: 620px;
        padding: 72px 0 92px;
        display: flex;
        align-items: flex-end;
    }
    .hero::before {
        display: block;
        width: 100%;
        background: radial-gradient(ellipse at center 58%,rgba(255,253,249,.72) 0%,rgba(255,253,249,.54) 34%,rgba(255,253,249,.22) 64%,rgba(255,253,249,0) 100%),
linear-gradient(180deg,rgba(255,253,249,.12) 0%,rgba(255,253,249,.26) 48%,rgba(255,253,249,.58) 100%);
    }
    .hero-grid {
        min-height: 0;
        position: relative;
        z-index: 4;
        text-align: center;
        justify-items: center;
    }
    .hero-fluid-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        aspect-ratio: auto;
    }
    .hero-fluid-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        filter: saturate(1.02) contrast(1.02);
    }
    .hero h1 {
        font-size: 44px;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        letter-spacing: -1px;
        text-shadow: 0 3px 12px rgba(255,253,249,.95),
0 1px 3px rgba(61,47,42,.22);
    }
    .hero p {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
        letter-spacing: .25px;
        text-shadow: 0 3px 12px rgba(255,253,249,.95),
0 1px 3px rgba(61,47,42,.18);
    }
    .hero .container.hero-grid {
        width: 100%;
        max-width: none;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero .container.hero-grid > div {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero .buttons {
        width: 100%;
        max-width: 320px;
        gap: 12px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero .btn {
        width: 100%;
        max-width: 300px;
        min-height: 54px;
        padding: 15px 24px;
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* =========================== */
/* BUTTONS                     */
/* =========================== */
.btn {
    padding: 20px 36px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}
.btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 18px 34px rgba(242,161,74,.28);
}
.btn-secondary {
    background: white;
    border: 2px solid var(--green);
    color: var(--green);
}
.btn:hover {
    transform: translateY(-5px);
}
@media(max-width:700px) {
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
/* =========================== */
/* SECTIONS                    */
/* =========================== */
.section {
    padding: 110px 0;
}
.section-title {
    text-align: center;
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 60px;
    letter-spacing: -2px;
}
/* =========================== */
/* ASSET HEADINGS              */
/* =========================== */
.section-title-asset {
    margin-bottom: 42px;
    line-height: 0;
}
.section-title-img,
.asset-page-title img,
.shop-title-asset img {
    display: block;
    width: min(620px,92%);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(61,47,42,.08));
}
.shop-title-asset {
    margin-bottom: 8px;
    line-height: 0;
}
.asset-page-title {
    margin: 0 0 18px;
    line-height: 0;
}
.asset-page-title img {
    width: min(560px,90%);
}
.best-sellers-heading {
    position: relative;
    z-index: 4;
    margin-bottom: 8px;
}
.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:700px) {
    .section-title-img,
.asset-page-title img,
.shop-title-asset img {
        width: min(360px,94%);
    }
}
/* =========================== */
/* CATEGORY CARDS              */
/* =========================== */
.categories {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 34px;
}
.category-card {
    background: #fffdf9;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(123,149,92,.12);
    box-shadow: 0 12px 30px rgba(61,47,42,.06);
    transition: .35s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(61,47,42,.09);
}
.category-card img {
    width: 100%;
    display: block;
    aspect-ratio: 1.12/1;
    object-fit: cover;
    object-position: center;
    background: #fff8ef;
}
.category-content {
    min-height: 118px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
    gap: 10px 12px;
    flex: 1;
}
.category-content h3 {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 22px;
    line-height: 1.08;
    font-weight: 900;
    color: var(--text);
    margin: 0;
    align-self: start;
}
.category-content .cat-count {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    margin: 0;
}
.category-content .category-cta,
.category-content > span:not(.cat-count) {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    min-width: 102px;
    min-height: 38px;
    padding: 9px 15px;
    margin: 0;
    border-radius: 999px;
    border: 2px solid var(--green);
    color: var(--green);
    font-weight: 800;
    font-size: 13px;
    transition: .25s;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.category-card:hover .category-content .category-cta,
.category-card:hover .category-content > span:not(.cat-count) {
    background: var(--green);
    color: white;
    border-color: var(--green);
}
.cat-count {
    display: inline-flex;
    width: max-content;
    font-size: 12px;
    font-weight: 800;
    color: var(--green);
    background: rgba(123,149,92,.1);
    border-radius: 999px;
    padding: 5px 11px;
    min-width: 0;
}
.cat-desc {
    font-size: 15px;
    color: #7d6b62;
    margin: 6px 0 8px;
    line-height: 1.55;
}
@media(max-width:1200px) {
    .categories {
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width:700px) {
    .categories {
        grid-template-columns: 1fr;
    }
    .category-content {
        min-height: 110px;
        padding: 14px;
        gap: 8px 10px;
    }
    .category-content h3 {
        font-size: 18px;
    }
    .category-content .category-cta,
.category-content > span:not(.cat-count) {
        min-width: 90px;
        min-height: 34px;
        padding: 8px 12px;
        font-size: 12px;
    }
}
/* =========================== */
/* HOME SCROLL CAROUSELS       */
/* =========================== */
.home-scroll-wrap {
    position: relative;
    padding: 0 70px;
    overflow: visible;
}
.home-scroll-row {
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.home-scroll-row::-webkit-scrollbar,
.best-sellers-products ul.products::-webkit-scrollbar,
.single-product .dl-gallery-thumbs::-webkit-scrollbar {
    display: none;
}
.home-scroll-btn {
    position: absolute;
    top: 46%;
    z-index: 12;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(123,149,92,.16);
    border-radius: 999px;
    background: rgba(255,253,249,.96);
    color: #6f8851;
    box-shadow: 0 12px 28px rgba(61,47,42,.12);
    font-size: 0;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition: .2s;
}
.home-scroll-btn::before {
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}
.home-scroll-prev {
    left: 12px;
}
.home-scroll-prev::before {
    content: "\2039";
}
.home-scroll-next {
    right: 12px;
}
.home-scroll-next::before {
    content: "\203A";
}
.home-scroll-btn:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
    transform: translateY(-50%) scale(1.04);
}
.categories.home-scroll-row {
    display: flex !important;
    gap: 24px !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    padding: 8px 2px 26px !important;
    max-width: 100%;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
}
.categories.home-scroll-row .category-card {
    flex: 0 0 clamp(240px, 24vw, 320px) !important;
    max-width: clamp(240px, 24vw, 320px) !important;
    scroll-snap-align: start;
    width: clamp(240px, 24vw, 320px) !important;
    min-width: clamp(240px, 24vw, 320px) !important;
    height: 396px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}
@media(max-width:700px) {
    .home-scroll-wrap {
        padding: 0 42px;
        max-width: 100%;
        overflow: hidden;
    }
    .home-scroll-btn {
        top: 44%;
        width: 36px;
        height: 36px;
    }
    .home-scroll-prev {
        left: 4px;
    }
    .home-scroll-next {
        right: 4px;
    }
    .categories.home-scroll-row {
        gap: 16px !important;
        padding: 8px 0 22px !important;
    }
    .categories.home-scroll-row .category-card {
        flex-basis: calc(100vw - 108px);
        max-width: calc(100vw - 108px);
    }
}
/* =========================== */
/* FIX: NAJPRODAVANIJI MOBILE  */
/* =========================== */
.best-sellers-products {
    overflow: hidden !important;
    width: 100%;
    max-width: 100%;
}
.best-sellers-products ul.products {
    display: flex !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-behavior: smooth;
    scroll-snap-type: none !important;
    -webkit-overflow-scrolling: auto !important;
    touch-action: pan-y !important;
    overscroll-behavior-x: contain;
    gap: 22px !important;
    padding: 8px 4px 18px !important;
}
.best-sellers-products ul.products li.product {
    float: none !important;
    display: block !important;
    margin: 0 !important;
    scroll-snap-align: none !important;
    flex: 0 0 clamp(230px, 78vw, 280px) !important;
    width: clamp(230px, 78vw, 280px) !important;
    min-width: clamp(230px, 78vw, 280px) !important;
    max-width: clamp(230px, 78vw, 280px) !important;
}
@media (max-width: 700px) {
    .best-sellers-scroll .home-scroll-wrap {
        padding-left: 42px;
        padding-right: 42px;
        overflow: visible;
    }
    .best-sellers-products {
        overflow: hidden !important;
        padding: 0;
    }
    .best-sellers-products ul.products {
        gap: 0 !important;
        padding: 8px 0 22px !important;
        overflow-x: hidden !important;
    }
    .best-sellers-products ul.products li.product {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 0 4px !important;
        box-sizing: border-box !important;
    }
    .best-sellers-products .dl-product-link {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .best-sellers-products .dl-product-image {
        margin-left: 10px;
        margin-right: 10px;
    }
}
/* =========================== */
/* FOOTER                      */
/* =========================== */
footer {
    margin-top: 80px;
    padding: 42px 0 !important;
    background: #efe4d2;
    border-top: 1px solid rgba(61,47,42,.08);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0;
    align-items: stretch;
    font-weight: 800;
    color: #5b4b43;
}
.footer-brand,
.footer-social,
.footer-copy {
    display: flex;
    align-items: center;
    padding: 0 28px;
}
.footer-brand {
    padding-left: 0;
    display: grid;
    align-content: center;
    gap: 6px;
}
.footer-brand-top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-brand strong {
    font-size: 22px;
    line-height: 1;
    color: var(--text);
}
.footer-copy {
    font-size: 14px;
    color: #7d6b62;
    justify-content: flex-end;
    padding-right: 0;
}
.footer-tagline {
    font-size: 15px;
    line-height: 1.45;
    color: #6b5a50;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.footer-links {
    padding: 0;
    margin: 0;
}
.footer-links a {
    font-size: 14px;
    font-weight: 700;
    color: #7d6b62;
    text-decoration: none;
    transition: color .2s;
}
.footer-links a:hover {
    color: var(--green);
}
.footer-social {
    justify-content: center;
    border-left: 1px solid rgba(61,47,42,.12);
    border-right: 1px solid rgba(61,47,42,.12);
    gap: 10px;
    padding: 0;
    margin: 0;
}
.footer-social a {
    background: rgba(255,253,249,.72);
    border-color: rgba(123,149,92,.2);
}
.footer-social .social-icon-cutout {
    fill: #efe4d2;
}
@media(max-width:800px) {
    footer {
        padding: 42px 0;
        margin-top: 56px;
    }
    .footer-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        text-align: center;
    }
    .footer-brand,
.footer-social,
.footer-copy {
        justify-content: center;
        padding: 18px 0;
        border: 0;
    }
    .footer-brand {
        justify-items: center;
        align-items: center;
    }
    .footer-brand-top {
        justify-content: center;
    }
    .footer-tagline {
        max-width: 280px;
        text-align: center;
    }
    .footer-right {
        align-items: center;
    }
    .footer-social {
        border-top: 1px solid rgba(61,47,42,.12);
        border-bottom: 1px solid rgba(61,47,42,.12);
    }
    .footer-copy {
        order: 3;
    }
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}
/* =========================== */
/* SOCIAL LINKS                */
/* =========================== */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 999px;
    background: #fffdf9;
    border: 1.5px solid rgba(123,149,92,.22);
    color: #6f8851;
    text-decoration: none;
    transition: .2s;
}
.social-links svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.social-links svg path,
.social-links svg rect,
.social-links svg circle {
    vector-effect: non-scaling-stroke;
}
.social-links .social-icon-cutout {
    fill: #fffdf9;
    stroke: none;
}
.social-links a:hover {
    background: var(--green);
    border-color: var(--green);
    color: white;
    transform: translateY(-2px);
}
.social-links a:hover .social-icon-cutout {
    fill: var(--green);
}
.social-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(61,47,42,.08);
}
.social-block h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 14px;
}
/* =========================== */
/* SHOP PAGE                   */
/* =========================== */
.shop-wrapper {
    padding: 80px 0 120px;
    background: var(--bg);
    min-height: 100vh;
}
.shop-hero {
    padding: 70px 0 44px;
    text-align: center;
    background: linear-gradient(160deg,#fffdf9 0%,#f5ece0 100%);
}
.shop-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--text);
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}
.shop-title::after {
    content: '';
    display: block;
    height: 5px;
    width: 60%;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg,#f2a14a,#e8913a);
}
.shop-title.small {
    font-size: 44px;
    margin-bottom: 36px;
}
.shop-subtitle {
    font-size: 18px;
    color: #7d6b62;
    margin-top: 12px;
}
.dl-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 34px;
    background: #fffdf9;
    border-radius: 20px;
    padding: 16px 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    border: 1.5px solid rgba(242,161,74,.14);
}
.dl-category-filter select,
.woocommerce-ordering select {
    -webkit-appearance: none;
    appearance: none;
    padding: 10px 42px 10px 18px;
    border-radius: 999px;
    border: 2px solid #e5d9d1;
    background-color: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f2a14a' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    font-family: 'Nunito',sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: .2s;
    min-width: 190px;
}
.dl-category-filter select:hover,
.woocommerce-ordering select:hover {
    border-color: var(--orange);
}
.dl-category-filter select:focus,
.woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242,161,74,.15);
}
/* =========================== */
/* WOOCOMMERCE PRODUCT GRID    */
/* =========================== */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3,1fr) !important;
    gap: 22px !important;
    padding: 0 !important;
    margin: 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}
.woocommerce ul.products li.product,
.dl-product-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
    list-style: none;
}
.dl-product-link {
    height: auto;
    display: flex;
    flex-direction: column;
    background: #fffdf9;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(123,149,92,.12);
    box-shadow: 0 14px 34px rgba(61,47,42,.06);
    text-decoration: none;
    transition: .3s;
}
.dl-product-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(61,47,42,.09);
    border-color: rgba(242,161,74,.32);
}
.dl-product-image-anchor {
    display: block;
    text-decoration: none;
}
.dl-product-image {
    position: relative;
    background: #fff8ef;
    margin: 10px 10px 0;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}
.dl-product-image img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin: 0 !important;
    display: block;
}
.dl-product-content {
    padding: 10px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    font-family: 'Nunito',sans-serif;
}
.dl-product-title-anchor {
    display: block;
    text-decoration: none;
    color: inherit;
}
.dl-product-title-anchor:hover .dl-product-title {
    color: var(--orange);
}
.dl-product-title {
    font-size: 22px !important;
    line-height: 1.15;
    font-weight: 900 !important;
    font-family: 'Nunito',sans-serif;
    color: var(--text);
    margin-bottom: 8px !important;
    min-height: 0;
}
.dl-product-price {
    font-size: 15px;
    font-weight: 900;
    font-family: 'Nunito',sans-serif;
    color: var(--green);
    margin-top: auto;
    margin-bottom: 10px;
    min-height: 0;
    line-height: 1.2;
}
.dl-product-price .woocommerce-Price-amount {
    font-size: inherit;
    font-family: inherit;
}
.dl-product-actions {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 4px;
}
.dl-product-card .button.add_to_cart_button,
.dl-product-button,
.dl-product-inquiry {
    width: 100%;
    min-height: 42px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 14px !important;
    padding: 10px 14px !important;
    font-size: 14px;
    font-weight: 900;
    font-family: 'Nunito',sans-serif;
    line-height: 1.15;
    text-decoration: none;
    box-sizing: border-box;
    transition: .2s;
    cursor: pointer;
}
.dl-product-card .button.add_to_cart_button {
    background: #f2a14a !important;
    color: white !important;
    border: 0 !important;
    box-shadow: 0 10px 20px rgba(242,161,74,.2);
}
.dl-product-card .button.add_to_cart_button:hover,
.dl-product-card .button.add_to_cart_button.loading {
    background: #e8913a !important;
}
.dl-product-card .button.add_to_cart_button::after {
    display: none !important;
}
.dl-product-button {
    background: transparent;
    color: #6f8851;
    border: 1.5px solid var(--green);
}
.dl-product-inquiry {
    background: #fff8ef;
    color: #6f8851;
    border: 1.5px solid rgba(123,149,92,.38);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
.dl-product-inquiry:hover,
.dl-product-button:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
}
.onsale,
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
    position: absolute !important;
    left: 16px !important;
    top: 16px !important;
    right: auto !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    background: var(--green) !important;
    color: white !important;
    font-size: 0 !important;
    font-weight: 900 !important;
    box-shadow: 0 10px 20px rgba(123,149,92,.25);
    z-index: 2;
}
a.added_to_cart.wc-forward {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
    padding: 12px 22px;
    width: 100%;
    font-size: 15px;
    font-weight: 800;
    color: var(--green);
    background: rgba(123,149,92,.08);
    border: 1.5px solid rgba(123,149,92,.3);
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s ease,color .2s ease,border-color .2s ease;
}
a.added_to_cart.wc-forward::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: var(--green);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    flex-shrink: 0;
    transition: background-color .2s ease;
}
a.added_to_cart.wc-forward:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}
a.added_to_cart.wc-forward:hover::before {
    background-color: #fff;
}
@media(max-width:950px) {
    .shop-title {
        font-size: 50px;
    }
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
}
@media(max-width:600px) {
    .woocommerce ul.products {
        gap: 18px !important;
    }
    .dl-product-content {
        padding: 10px 12px 12px;
    }
    .dl-product-title {
        font-size: 20px !important;
    }
}
/* =========================== */
/* PAGINATION                  */
/* =========================== */
.woocommerce nav.woocommerce-pagination,
.dl-pagination {
    margin-top: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}
.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}
.woocommerce nav.woocommerce-pagination ul li {
    border: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.dl-pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px !important;
    border: 1.5px solid rgba(123,149,92,.18);
    border-radius: 999px;
    background: #fffdf9;
    box-shadow: 0 10px 24px rgba(61,47,42,.06);
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    line-height: 1;
    transition: .2s;
    font-family: 'Nunito',sans-serif;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.dl-pagination .page-numbers.current {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    box-shadow: 0 12px 24px rgba(242,161,74,.22);
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.dl-pagination a.page-numbers:hover {
    background: var(--green);
    border-color: var(--green);
    color: white;
    transform: translateY(-2px);
}
.dl-no-products {
    text-align: center;
    padding: 80px 20px;
    font-size: 20px;
    color: #7d6b62;
    background: #fffdf9;
    border-radius: 34px;
    box-shadow: 0 18px 40px rgba(0,0,0,.04);
}
/* =========================== */
/* SINGLE PRODUCT PAGE         */
/* =========================== */
.single-product .product-page-wrapper {
    padding: 42px 0 112px;
    background: linear-gradient(135deg,rgba(123,149,92,.08) 0,rgba(123,149,92,0) 240px),
linear-gradient(180deg,#fffdf9 0%,#f7f1e8 52%,#f3e6d5 100%);
}
.single-product .product-page-wrapper > .container {
    width: min(1160px,92%);
}
.dl-breadcrumb-wrap {
    max-width: 1180px;
    margin: 0 auto 18px;
}
.dl-breadcrumb-wrap .woocommerce-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 !important;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.12);
    box-shadow: 0 8px 26px rgba(61,47,42,.05);
    font-size: 12px;
    font-weight: 900;
    color: #6f625a;
}
.single-product .dl-single-grid {
    display: grid;
    grid-template-columns: minmax(360px,560px) minmax(360px,500px);
    gap: 48px;
    align-items: start;
    justify-content: center;
    margin: 0 auto;
    max-width: 1180px;
}
.single-product .dl-single-gallery {
    position: sticky;
    top: 118px;
}
.single-product .dl-custom-gallery {
    position: relative;
    overflow: hidden;
    padding: 16px;
    border-radius: 28px;
    background: linear-gradient(180deg,#fffdf9 0%,#faf2e7 100%);
    border: 1px solid rgba(123,149,92,.18);
    box-shadow: 0 22px 56px rgba(61,47,42,.11);
}
.single-product .dl-custom-gallery::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg,rgba(123,149,92,.18) 0 42px,transparent 42px 100%),
linear-gradient(135deg,transparent 0 84%,rgba(242,161,74,.18) 84% 100%);
    opacity: .6;
}
.single-product .dl-gallery-main-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.single-product .dl-gallery-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fffdf9;
    border: 0;
    box-shadow: 0 14px 34px rgba(61,47,42,.14);
    color: #6f8851;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    padding: 0;
}
.single-product .dl-gallery-arrow:hover {
    background: var(--green);
    color: white;
    box-shadow: 0 6px 20px rgba(123,149,92,.30);
}
.single-product .dl-main-product-image {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    border-radius: 22px;
    background: linear-gradient(180deg,#fffdf9,#fbf3e8);
    overflow: hidden;
}
.single-product .dl-main-product-image img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    aspect-ratio: auto;
    object-fit: contain !important;
    object-position: center !important;
    padding: 0;
    display: block;
    background: #fffdf9 !important;
}
.single-product .dl-gallery-thumbs {
    position: relative;
    z-index: 1;
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    gap: 12px;
    margin-top: 14px;
    padding: 2px 2px 8px;
}
.single-product .dl-gallery-thumb {
    display: block;
    position: relative;
    flex: 0 0 92px;
    height: 82px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    background: #fffdf9;
    border: 2px solid rgba(123,149,92,.12);
    box-shadow: 0 8px 20px rgba(61,47,42,.06);
    transition: .2s;
    cursor: pointer;
}
.single-product .dl-gallery-thumb:hover,
.single-product .dl-gallery-thumb.is-active {
    border-color: var(--green);
    transform: translateY(-2px);
}
.single-product .dl-gallery-thumb.is-active {
    box-shadow: 0 0 0 3px rgba(123,149,92,.12),0 10px 22px rgba(61,47,42,.08);
}
.single-product .dl-gallery-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.01);
}
.dl-gallery-arrow-prev,
.dl-gallery-arrow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
    transition: .2s ease;
}
.dl-gallery-arrow-prev {
    left: 12px;
}
.dl-gallery-arrow-next {
    right: 12px;
}
.dl-gallery-arrow-prev:hover,
.dl-gallery-arrow-next:hover {
    transform: translateY(-50%) scale(1.08);
    background: #fff;
}
.single-product .dl-single-summary {
    padding: 36px;
    border-radius: 28px;
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.18);
    box-shadow: 0 22px 56px rgba(61,47,42,.09);
    max-width: none;
    font-family: 'Nunito',sans-serif;
}
.dl-single-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef3e8;
    color: #6f8851;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.single-product .dl-single-title {
    max-width: 430px;
    font-size: 48px;
    line-height: 1.04;
    letter-spacing: 0;
    font-weight: 900;
    margin-bottom: 14px;
    color: #35261f;
}
.single-product .dl-single-price {
    display: flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    padding: 10px 14px;
    margin-bottom: 26px;
    border-radius: 14px;
    background: #f5ecdf;
    box-shadow: none;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    color: #6f8851;
}
.single-product .dl-single-price del {
    opacity: .55;
    margin-right: 8px;
}
.single-product .dl-single-price ins {
    text-decoration: none;
    color: #6f8851;
}
.single-product .dl-single-price .woocommerce-Price-amount {
    font-size: inherit;
    font-family: inherit;
}
.single-product .dl-single-excerpt {
    display: none;
}
.dl-single-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 22px;
    padding: 18px 0;
    border-top: 1px solid rgba(61,47,42,.08);
    border-bottom: 1px solid rgba(61,47,42,.08);
}
.dl-single-benefits span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    padding: 0 0 0 22px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
    color: #54463f;
}
.dl-single-benefits span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(242,161,74,.15);
}
.single-product .dl-single-cart {
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 20px;
    background: #fff8ef;
    border: 1px solid rgba(242,161,74,.28);
    box-shadow: none;
}
.single-product .dl-single-cart .cart {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
}
.single-product .dl-single-cart .quantity input {
    width: 100%;
    height: 52px;
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(61,47,42,.16);
    background: white;
    font-family: 'Nunito',sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
}
.single_add_to_cart_button {
    width: 100%;
    min-height: 52px;
    background: #f2a14a !important;
    color: white !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 14px 22px !important;
    font-weight: 900 !important;
    font-size: 15px !important;
    font-family: 'Nunito',sans-serif !important;
    transition: .25s !important;
    box-shadow: 0 12px 24px rgba(242,161,74,.24) !important;
}
.single_add_to_cart_button:hover {
    background: #e8913a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242,161,74,.3) !important;
}
.single-product .dl-single-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(61,47,42,.08);
    font-size: 13px;
    color: #7d6b62;
}
.single-product .dl-meta-label {
    font-weight: 900;
    color: #7d6b62;
}
.single-product .dl-meta-value a {
    color: #6f8851;
    font-weight: 900;
    text-decoration: none;
}
.single-product .dl-single-inquiry {
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg,#fff8ef,#fffdf9);
    border: 1px solid rgba(242,161,74,.28);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}
.single-product .dl-single-inquiry p {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 800;
    color: #5f5149;
}
.single-product .dl-single-inquiry .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 16px;
    font-size: 15px;
}
.single-product .dl-single-inquiry .btn:hover {
    transform: translateY(-2px);
}
.single-product .dl-tabs {
    max-width: 1160px;
    margin: 58px auto 0;
    border-radius: 26px;
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.16);
    box-shadow: 0 18px 46px rgba(61,47,42,.08);
    overflow: hidden;
    padding: 0 !important;
}
.single-product .dl-tabs .woocommerce-tabs {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}
.single-product .dl-tabs ul.tabs {
    display: flex !important;
    gap: 8px !important;
    align-items: center;
    margin: 0 !important;
    padding: 16px 18px 0 !important;
    background: #f5eadb !important;
    border: 0 !important;
    list-style: none !important;
    border-radius: 0 !important;
}
.single-product .dl-tabs ul.tabs::before,
.single-product .dl-tabs ul.tabs::after,
.single-product .dl-tabs ul.tabs li::before,
.single-product .dl-tabs ul.tabs li::after {
    display: none !important;
    content: none !important;
}
.single-product .dl-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    list-style: none !important;
    box-shadow: none !important;
}
.single-product .dl-tabs ul.tabs li a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 34px !important;
    padding: 9px 18px !important;
    border-radius: 999px;
    background: #fffdf9;
    color: transparent !important;
    font-size: 0 !important;
    font-weight: 900 !important;
    text-decoration: none;
    box-shadow: none;
    transition: all .2s ease !important;
    position: relative !important;
}
.single-product .dl-tabs ul.tabs li.active {
    background: var(--green) !important;
    border-radius: 999px !important;
}
.single-product .dl-tabs ul.tabs li.active a {
    color: white !important;
    background: transparent;
}
.single-product .dl-tabs .panel {
    padding: 42px 34px 36px !important;
}
.single-product .dl-tabs .panel h2 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #35261f;
}
.single-product .dl-tabs .panel p,
.single-product .dl-tabs .panel .comment-form {
    font-size: 16px;
    line-height: 1.75;
    color: #5f5149;
}
.single-product .dl-related {
    max-width: 1160px !important;
    margin-top: 90px;
    margin: 90px auto 0 !important;
    overflow: visible !important;
    width: 100% !important;
    text-align: left !important;
}
.dl-related h2 {
    font-size: 44px;
    margin-bottom: 34px;
}
@media(max-width:950px) {
    .single-product .dl-single-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .single-product .dl-single-gallery {
        position: relative;
        top: auto;
    }
    .single-product .dl-single-summary {
        padding: 26px 20px;
        border-radius: 26px;
        max-width: 100%;
    }
    .single-product .dl-single-title {
        font-size: 36px;
    }
    .single-product .dl-single-cart .cart {
        align-items: stretch;
    }
    .single_add_to_cart_button {
        width: 100%;
    }
    .single-product .dl-main-product-image {
        min-height: 380px;
    }
    .single-product .dl-main-product-image img {
        max-height: 430px;
    }
}
@media(max-width:600px) {
    .single-product .dl-gallery-thumbs {
        justify-content: flex-start;
    }
}
/* =========================== */
/* REVIEWS                     */
/* =========================== */
.woocommerce #review_form_wrapper,
.single-product #review_form_wrapper {
    background: var(--cream) !important;
    border: 2px solid rgba(123,149,92,.15) !important;
    border-radius: 28px !important;
    padding: 36px !important;
    box-shadow: 0 12px 36px rgba(61,47,42,.03) !important;
    box-sizing: border-box !important;
}
.single-product #review_form_wrapper {
    background: linear-gradient(180deg,#fff8ef,#fffdf9) !important;
}
.woocommerce #reply-title,
.single-product #reply-title {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    margin-bottom: 20px !important;
    display: block !important;
}
.woocommerce #review_form .stars a,
.single-product #review_form .stars a {
    color: var(--orange) !important;
    font-size: 22px !important;
    margin-right: 4px !important;
}
.woocommerce #review_form label,
.single-product #review_form label {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: var(--text) !important;
    margin-bottom: 8px !important;
    display: block !important;
}
.woocommerce #reviews textarea,
.woocommerce #reviews input[type="text"],
.woocommerce #reviews input[type="email"],
.single-product #reviews textarea,
.single-product #reviews input[type="text"],
.single-product #reviews input[type="email"] {
    width: 100% !important;
    border: 2px solid #decfbe !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
    background: #ffffff !important;
    font-family: 'Nunito',sans-serif !important;
    font-size: 16px !important;
    color: var(--text) !important;
    outline: none !important;
    transition: all .2s ease !important;
    box-sizing: border-box !important;
}
.woocommerce #reviews textarea:focus,
.woocommerce #reviews input[type="text"]:focus,
.woocommerce #reviews input[type="email"]:focus {
    border-color: var(--green) !important;
    box-shadow: 0 0 0 4px rgba(123,149,92,.12) !important;
}
.woocommerce #reviews textarea {
    min-height: 140px !important;
    resize: vertical !important;
}
.woocommerce #reviews #comments .woocommerce-noreviews {
    display: inline-flex !important;
    align-items: center !important;
    padding: 10px 18px !important;
    border-radius: 12px !important;
    background: var(--cream) !important;
    color: #7d6b62 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    border: 1.5px solid #decfbe !important;
    margin-bottom: 24px !important;
}
.woocommerce #reviews #comments h2,
.single-product .dl-tabs h2 {
    font-size: 26px !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    margin: 0 0 16px !important;
    letter-spacing: -.5px !important;
}
.woocommerce #reviews .form-submit,
.single-product #reviews .form-submit {
    margin-top: 24px !important;
    display: flex !important;
    justify-content: flex-start !important;
}
.woocommerce #reviews .form-submit input#submit,
.woocommerce #respond input#submit,
.single-product #reviews .form-submit input {
    width: auto !important;
    min-width: 160px !important;
    height: 50px !important;
    background: var(--green) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    font-family: 'Nunito',sans-serif !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 0 32px !important;
    cursor: pointer !important;
    box-shadow: 0 8px 20px rgba(123,149,92,.2) !important;
    transition: all .25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.woocommerce #reviews .form-submit input#submit:hover,
.woocommerce #respond input#submit:hover {
    background: #6a824e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px rgba(123,149,92,.3) !important;
}
@media(max-width:750px) {
    .woocommerce #review_form_wrapper,
.single-product #review_form_wrapper {
        padding: 24px 20px !important;
    }
    .woocommerce #reviews .form-submit input#submit,
.woocommerce #respond input#submit {
        width: 100% !important;
    }
}
/* =========================== */
/* WOOCOMMERCE GENERAL         */
/* =========================== */
.woocommerce-breadcrumb {
    margin-bottom: 26px !important;
    font-size: 15px;
    color: #8b7c72;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border: 0 !important;
    border-radius: 22px !important;
    background: #fffdf9 !important;
    box-shadow: 0 12px 34px rgba(61,47,42,.06);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 18px 20px !important;
}
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    color: var(--green);
}
.woocommerce-message .wc-forward,
.woocommerce-message a.button.wc-forward {
    order: 2;
    float: none !important;
    min-height: 40px;
    margin: 0 !important;
    padding: 10px 18px !important;
    border-radius: 14px !important;
    background: var(--green) !important;
    color: white !important;
    border: none !important;
    font-family: 'Nunito',sans-serif !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: .2s !important;
    box-shadow: 0 10px 20px rgba(123,149,92,.2);
}
.woocommerce-message .wc-forward:hover,
.woocommerce-message a.button.wc-forward:hover {
    background: #6a8249 !important;
}
.button,
.woocommerce button.button,
.woocommerce a.button {
    min-height: 46px;
    border-radius: 16px !important;
    font-family: 'Nunito',sans-serif !important;
    font-weight: 900 !important;
}
.checkout-button,
.button.alt {
    background: var(--green) !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
}
.price {
    font-size: 24px !important;
    font-weight: 900 !important;
    color: var(--green) !important;
}
/* =========================== */
/* CART & CHECKOUT             */
/* =========================== */
.cart-page-wrapper,
.checkout-page-wrapper {
    background: linear-gradient(135deg,rgba(123,149,92,.08) 0,rgba(123,149,92,0) 240px),
linear-gradient(180deg,#fffdf9 0%,#f7f1e8 55%,#f3e6d5 100%);
}
.dl-cart-shell,
.dl-checkout-shell {
    max-width: 1160px;
    margin: 34px auto 0;
}
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout-review-order {
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.16);
    border-radius: 28px;
    box-shadow: 0 18px 46px rgba(61,47,42,.08);
    overflow: hidden;
}
.woocommerce-cart-form {
    padding: 0 !important;
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.14);
    border-radius: 28px;
    box-shadow: 0 18px 46px rgba(61,47,42,.07);
    overflow: hidden;
    margin-bottom: 28px;
}
.woocommerce-cart table.cart,
.woocommerce table.shop_table,
.woocommerce-checkout-review-order-table {
    width: 100%;
    border: 0 !important;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent !important;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
    border: 0 !important;
    border-bottom: 1px solid rgba(61,47,42,.08) !important;
    padding: 18px 16px !important;
    font-family: 'Nunito',sans-serif;
    vertical-align: middle;
}
.woocommerce table.shop_table th,
.woocommerce-cart table.cart th {
    background: #f5eadb;
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.woocommerce-cart table.cart img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(61,47,42,.1);
}
.woocommerce-cart table.cart .product-name a,
.woocommerce-checkout-review-order-table .product-name {
    color: var(--text);
    font-weight: 900;
    text-decoration: none;
}
.woocommerce-cart table.cart .product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #fff3ea;
    color: #c26042 !important;
    font-size: 0 !important;
    font-weight: 900;
    text-decoration: none;
    transition: .2s;
}
.woocommerce-cart table.cart .product-remove a:hover {
    background: #c26042;
    color: white !important;
}
.woocommerce .quantity input.qty {
    width: 76px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(61,47,42,.16);
    background: white;
    font-family: 'Nunito',sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
}
.woocommerce-cart .cart-collaterals {
    margin-top: 0;
    display: flex;
    justify-content: flex-end;
}
.woocommerce-cart .cart-collaterals .cart_totals {
    width: min(460px,100%);
    float: none;
    padding: 28px;
}
.woocommerce-cart .cart_totals h2 {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--text);
    font-weight: 900;
    padding: 24px 28px 0;
    margin: 0 0 16px;
}
.woocommerce-cart .wc-proceed-to-checkout {
    padding: 20px 28px;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px !important;
    background: var(--orange) !important;
    box-shadow: 0 14px 28px rgba(242,161,74,.24) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    font-family: 'Nunito',sans-serif !important;
}
.woocommerce-cart .actions {
    background: #fdf8f2;
    padding: 16px 20px !important;
    border-top: 1px solid rgba(61,47,42,.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.woocommerce-cart .coupon {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.woocommerce-cart .coupon input.input-text,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    height: 48px;
    border: 1px solid rgba(61,47,42,.16);
    border-radius: 16px;
    background: white;
    padding: 12px 14px;
    font-family: 'Nunito',sans-serif;
    font-size: 15px;
    color: var(--text);
    box-shadow: none;
}
.woocommerce form .form-row textarea {
    height: auto !important;
    min-height: 110px !important;
}
.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(340px,440px);
    gap: 28px;
    align-items: start;
}
.woocommerce-checkout #customer_details {
    padding: 32px !important;
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.14);
    border-radius: 28px;
    box-shadow: 0 18px 46px rgba(61,47,42,.07);
}
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    float: none;
    width: 100%;
}
.woocommerce-checkout #customer_details .col-2 {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(61,47,42,.08);
}
.woocommerce-checkout h3,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading {
    font-size: 28px;
    line-height: 1.15;
    margin: 0 0 18px;
    color: #35261f;
    font-weight: 900;
}
#order_review_heading {
    grid-column: 2;
    margin-bottom: -10px;
    padding: 28px 28px 0;
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin: 0 !important;
}
.woocommerce-checkout-review-order {
    grid-column: 2;
    padding: 0 !important;
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.14);
    border-radius: 28px;
    box-shadow: 0 18px 46px rgba(61,47,42,.07);
    overflow: hidden;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    font-size: 14px;
    padding: 14px 24px !important;
    border-bottom: 1px solid rgba(61,47,42,.07) !important;
    border: 0 !important;
    font-weight: 800;
}
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
    background: #fff8ef;
    font-weight: 900;
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: 17px;
    color: var(--green);
    background: #f5eadb;
}
.woocommerce-checkout #payment {
    background: #fff8ef !important;
    border: 0 !important;
    border-top: 1px solid rgba(61,47,42,.08) !important;
    border-radius: 0 0 28px 28px !important;
    padding: 24px !important;
}
.woocommerce-checkout #payment ul.payment_methods {
    padding: 0 !important;
    border: 0 !important;
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}
.woocommerce-checkout #payment ul.payment_methods li {
    position: relative;
    margin: 0 !important;
    padding: 16px 18px !important;
    border-radius: 18px;
    background: #fffdf9;
    border: 1.5px solid rgba(123,149,92,.16) !important;
    box-shadow: 0 8px 20px rgba(61,47,42,.04);
    font-family: 'Nunito',sans-serif;
    font-weight: 800;
    transition: border-color .2s;
}
.woocommerce-checkout #payment ul.payment_methods li input {
    margin-right: 10px;
    accent-color: var(--green);
}
.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 900;
    color: var(--text);
}
.woocommerce-checkout #payment div.payment_box {
    margin: 14px 0 0 !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    background: #eef3e8 !important;
    color: #5f5149 !important;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 12px !important;
}
.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}
.woocommerce-privacy-policy-text {
    margin: 18px 0;
    font-size: 13px;
    line-height: 1.6;
    color: #6f625a;
}
@media(max-width:950px) {
    .woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    #order_review_heading,
.woocommerce-checkout-review-order {
        grid-column: 1;
    }
    #order_review_heading {
        margin-bottom: 0;
    }
    .woocommerce-checkout #customer_details,
.woocommerce-cart .cart-collaterals .cart_totals {
        padding: 22px;
    }
    .woocommerce table.shop_table_responsive tr,
.woocommerce-page table.shop_table_responsive tr {
        border-bottom: 1px solid rgba(61,47,42,.08);
    }
    .woocommerce table.shop_table_responsive tr td,
.woocommerce-page table.shop_table_responsive tr td {
        display: block;
        text-align: right !important;
    }
    .woocommerce table.shop_table_responsive tr td::before,
.woocommerce-page table.shop_table_responsive tr td::before {
        float: left;
        font-weight: 900;
        color: #7d6b62;
    }
}
/* =========================== */
/* INFO PAGES (ABOUT/CONTACT)  */
/* =========================== */
.info-hero {
    padding: 90px 0 36px;
    background: linear-gradient(to bottom,#fffdf9,#f7efe6);
}
.info-hero-inner {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}
.info-hero h1 {
    font-size: 68px;
    line-height: .95;
    letter-spacing: -3px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 16px;
}
.info-hero p {
    font-size: 21px;
    line-height: 1.65;
    color: #5e5149;
}
.info-hero-title-img {
    display: block;
    width: 70%;
    max-width: 580px;
    min-width: 220px;
    height: auto;
    margin: 0 auto 32px;
    object-fit: contain;
}
.info-section {
    padding: 44px 0 0;
    background: var(--bg);
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}
.info-card,
.info-wide-card,
.contact-card {
    background: #fffdf9;
    border-radius: 34px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(0,0,0,.05);
}
.info-card h2,
.info-wide-card h2,
.contact-card h2 {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text);
    margin-bottom: 16px;
}
.info-card p,
.info-wide-card p,
.contact-card p {
    font-size: 18px;
    line-height: 1.75;
    color: #5f524a;
}
.info-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 4px;
}
.info-list li {
    position: relative;
    padding-left: 22px;
    font-size: 18px;
    line-height: 1.6;
    color: #5f524a;
}
.info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
}
.info-section-highlight {
    padding: 28px 0 110px;
}
.info-wide-card {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}
.info-wide-card .btn {
    margin-top: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px,420px) minmax(320px,1fr);
    gap: 28px;
    padding-bottom: 110px;
}
.contact-item {
    font-size: 18px;
    line-height: 1.75;
    color: #5f524a;
    margin-bottom: 8px;
}
.contact-form {
    display: grid;
    gap: 12px;
}
.contact-form label {
    font-size: 15px;
    font-weight: 800;
    color: #4b3a34;
    margin-top: 4px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #decfbe;
    background: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
}
.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}
.contact-form .btn {
    margin-top: 8px;
    border: none;
    cursor: pointer;
    justify-content: center;
}
@media(max-width:950px) {
    .info-hero h1 {
        font-size: 48px;
    }
    .info-hero p {
        font-size: 18px;
    }
    .info-grid,
.contact-layout {
        grid-template-columns: 1fr;
    }
    .info-card,
.info-wide-card,
.contact-card {
        padding: 24px;
    }
    .info-card h2,
.info-wide-card h2,
.contact-card h2 {
        font-size: 28px;
    }
}
@media(max-width:900px) {
    .info-hero-title-img {
        width: 80%;
        max-width: 420px;
    }
}
@media(max-width:600px) {
    .info-hero-title-img {
        width: 90%;
        max-width: 320px;
        margin-bottom: 20px;
    }
}
/* =========================== */
/* KATEGORIJE PAGE             */
/* =========================== */
.kategorije-hero {
    padding: 90px 0 50px;
    background: linear-gradient(to bottom,#fffdf9,#f7efe6);
    text-align: center;
}
.kategorije-hero h1 {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -3px;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1;
}
.kategorije-hero p {
    font-size: 20px;
    color: #5e5149;
    line-height: 1.65;
}
.kategorije-section {
    padding: 60px 0 120px;
    background: var(--bg);
}
.kategorije-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch !important;
}
@media(max-width:900px) {
    .kategorije-grid {
        grid-template-columns: 1fr;
    }
    .kategorije-hero h1 {
        font-size: 44px;
    }
}
@media(max-width:600px) {
    .kategorije-hero h1 {
        font-size: 36px;
    }
}
/* =========================== */
/* FAQ PAGE                    */
/* =========================== */
.faq-hero {
    padding-bottom: 44px;
}
.faq-title-img {
    width: min(760px,94%);
    max-width: 760px;
}
.faq-section {
    position: relative;
    padding: 54px 0 120px;
    background: var(--bg) !important;
}
.faq-section .container {
    max-width: 1100px;
}
.faq-section .faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    margin: 40px auto 0;
    max-width: 1100px;
    align-items: start;
}
.faq-section .faq-intro {
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.14);
    border-radius: 28px;
    padding: 40px 36px;
    box-shadow: 0 16px 40px rgba(61,47,42,.06);
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
}
.faq-section .faq-intro h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--text);
}
.faq-section .faq-intro p {
    font-size: 16px;
    line-height: 1.65;
    color: #6b5a50;
    max-width: 560px;
    margin: 0 0 24px;
}
.faq-section .faq-intro a.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 28px !important;
    font-size: 15px;
    font-weight: 700;
    color: #fff !important;
    background: var(--green) !important;
    border: none !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 24px rgba(123,149,92,.28);
    cursor: pointer;
    text-decoration: none !important;
    transition: background .2s ease,transform .15s ease,box-shadow .2s ease;
}
.faq-section .faq-intro a.btn:hover {
    background: #6a8250 !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(123,149,92,.34);
    color: #fff !important;
}
.faq-section .faq-list {
    display: grid;
    gap: 14px;
}
.faq-section .faq-item {
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.14);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(61,47,42,.05);
    overflow: hidden;
    transition: box-shadow .25s ease;
}
.faq-section .faq-item[open] {
    box-shadow: 0 16px 38px rgba(61,47,42,.09);
}
.faq-section .faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 20px 58px 20px 22px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--text);
    transition: background .25s ease;
}
.faq-section .faq-item summary:hover {
    background: #f9f4ea;
}
.faq-section .faq-item summary::-webkit-details-marker,
.faq-section .faq-item summary::marker {
    display: none;
}
.faq-section .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5eadb;
    color: #6f8851;
    font-size: 22px;
    font-weight: 900;
    transform: translateY(-50%);
    transition: all .25s ease;
}
.faq-section .faq-item[open] summary::after {
    content: "−";
    background: var(--green);
    color: #fff;
}
.faq-section .faq-item p {
    padding: 16px 22px 22px;
    font-size: 16px;
    line-height: 1.75;
    color: #5f5149;
    border-top: 1px solid rgba(123,149,92,.1);
    margin-top: 0;
}
@media(max-width:900px) {
    .faq-section {
        padding: 36px 0 90px;
    }
    .faq-section .faq-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    .faq-section .faq-intro {
        padding: 28px 24px;
    }
    .faq-section .faq-intro h2 {
        font-size: 26px;
    }
    .faq-section .faq-item summary {
        font-size: 17px;
    }
}
/* Ako je vrednost atributa data-count jednaka 0, sakrij brojač */
.nav-cart-count[data-count="0"] {
    display: none !important;
}
/* Osnovno stilizovanje korpe */
.cart-page-wrapper {
    padding: 60px 0 120px;
    background: linear-gradient(180deg,#fffdf9 0%,#f7f1e8 60%,#f3e6d5 100%);
    min-height: 100vh;
}
/* Dodali smo .dl-cart-shell ispred da bude jači selektor */
.dl-cart-shell table.shop_table {
    border-collapse: collapse !important;
    width: 100% !important;
    border: 1px solid #eee !important;
}
.dl-cart-shell table.shop_table th, 
.dl-cart-shell table.shop_table td {
    padding: 20px !important;
    border-bottom: 1px solid #eee !important;
    text-align: left !important;
}
.dl-cart-shell .cart_totals table {
    width: 100% !important;
    margin-top: 20px !important;
}
/* Ulepšavanje dugmeta za ažuriranje */
.dl-cart-shell button[name="update_cart"] {
    background: #555 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 15px !important;
    cursor: pointer;
}
/* Responsivnost za mobilne */
@media (max-width: 768px) {
    .dl-cart-shell .shop_table thead {
        display: none;
    }
    .dl-cart-shell .shop_table, .dl-cart-shell .shop_table tbody, .dl-cart-shell .shop_table tr, .dl-cart-shell .shop_table td {
        display: block;
        width: 100%;
    }
}
/* Prisilno stilizovanje tabele korpe */
.woocommerce-cart-form__contents {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 0 15px !important;
}
.woocommerce-cart-form__contents tr {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 15px;
}
.woocommerce-cart-form__contents td {
    padding: 20px !important;
    vertical-align: middle;
}
/* Sakrij "Remove" tekst ako smeta */
.product-remove a {
    font-size: 0 !important;
}
.product-remove a:after {
    content: "✕";
    font-size: 16px;
    color: red;
}
/* --- MOBILNA OPTIMIZACIJA ZA KORPU --- */
@media (max-width: 768px) {
    /* 1. Potpuno skrivamo zaglavlje tabele */
    .woocommerce-cart-form__contents thead {
        display: none !important;
    }
    /* 2. Svaki red postaje "kartica" */
    .woocommerce-cart-form__contents, 
    .woocommerce-cart-form__contents tbody, 
    .woocommerce-cart-form__contents tr, 
    .woocommerce-cart-form__contents td {
        display: block !important;
        width: 100% !important;
    }
    .woocommerce-cart-form__contents tr {
        margin-bottom: 20px !important;
        padding: 15px !important;
        border: 1px solid #eee !important;
        border-radius: 15px !important;
        background: #fff !important;
    }
    /* 3. Sakrivamo nepotrebne kolone na mobilnom */
    .woocommerce-cart-form__contents .product-remove,
    .woocommerce-cart-form__contents .product-thumbnail {
        display: inline-block !important;
        width: 20% !important;
        border: none !important;
    }
    .woocommerce-cart-form__contents .product-name,
    .woocommerce-cart-form__contents .product-price,
    .woocommerce-cart-form__contents .product-quantity,
    .woocommerce-cart-form__contents .product-subtotal {
        display: block !important;
        text-align: right !important;
        padding: 5px 0 !important;
        border: none !important;
    }
    /* Dodajemo labele pre vrednosti da bi bilo jasnije */
    .product-price:before {
        content: "Cena: ";
        font-weight: bold;
    }
    .product-quantity:before {
        content: "Količina: ";
        font-weight: bold;
    }
    .product-subtotal:before {
        content: "Ukupno: ";
        font-weight: bold;
    }
}
html, body {
    overflow-x: clip !important;
    overflow-y: visible !important;
}
/* =========================== */
/* CART PAGE                   */
/* =========================== */
.cart-page-wrapper h1 {
    font-size: 54px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text);
    margin-bottom: 36px;
}
.woocommerce-cart table.cart thead tr {
    background: #f5eadb;
}
.woocommerce-cart table.cart thead th {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #7d6b62;
    padding: 16px 20px !important;
    border: 0 !important;
}
.woocommerce-cart table.cart tbody tr {
    border-bottom: 1px solid rgba(61,47,42,.07) !important;
    transition: background .2s;
}
.woocommerce-cart table.cart tbody tr:hover {
    background: #fdf8f2;
}
.woocommerce-cart table.cart td {
    padding: 20px !important;
    border: 0 !important;
    vertical-align: middle !important;
}
.woocommerce-cart table.cart .product-name a {
    font-size: 17px;
    font-weight: 900;
    color: var(--text);
    text-decoration: none;
    transition: color .2s;
}
.woocommerce-cart table.cart .product-name a:hover {
    color: var(--orange);
}
.woocommerce-cart table.cart .product-remove a::after {
    content: "✕";
    font-size: 14px;
}
.woocommerce-cart .coupon input.input-text {
    height: 46px;
    border: 1.5px solid rgba(61,47,42,.16);
    border-radius: 999px;
    padding: 12px 18px;
    font-family: 'Nunito',sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color .2s;
}
.woocommerce-cart .coupon input.input-text:focus {
    border-color: var(--orange);
}
.woocommerce-cart .coupon button,
button[name="update_cart"] {
    height: 46px;
    padding: 0 22px;
    border-radius: 999px !important;
    border: 2px solid var(--green) !important;
    background: transparent !important;
    color: var(--green) !important;
    font-family: 'Nunito',sans-serif !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    cursor: pointer;
    transition: .2s !important;
}
.woocommerce-cart .coupon button:hover,
button[name="update_cart"]:hover {
    background: var(--green) !important;
    color: white !important;
}
.woocommerce-cart .cart_totals {
    width: min(460px,100%);
    float: none;
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.14);
    border-radius: 28px;
    box-shadow: 0 18px 46px rgba(61,47,42,.07);
    overflow: hidden;
    padding: 0 !important;
}
.woocommerce-cart .cart_totals table {
    width: 100%;
    border-collapse: collapse;
}
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    padding: 14px 28px !important;
    border-bottom: 1px solid rgba(61,47,42,.07) !important;
    font-size: 15px;
    font-weight: 800;
}
.woocommerce-cart .cart_totals table th {
    color: #7d6b62;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
    width: 40%;
}
.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
    font-size: 18px;
    color: var(--green);
    background: #f5eadb;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    min-height: 54px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px !important;
    background: var(--orange) !important;
    color: white !important;
    font-family: 'Nunito',sans-serif !important;
    font-weight: 900 !important;
    font-size: 17px !important;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(242,161,74,.28) !important;
    transition: .25s !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: #e8913a !important;
    transform: translateY(-2px);
}
/* =========================== */
/* CHECKOUT PAGE               */
/* =========================== */
.checkout-page-wrapper {
    padding: 60px 0 120px;
    background: linear-gradient(180deg,#fffdf9 0%,#f7f1e8 60%,#f3e6d5 100%);
    min-height: 100vh;
}
.checkout-page-wrapper h1 {
    font-size: 54px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text);
    margin-bottom: 36px;
}
.woocommerce-checkout h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(61,47,42,.08);
}
.woocommerce form .form-row label {
    font-size: 13px;
    font-weight: 900;
    color: #7d6b62;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 7px;
    display: block;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    height: 48px;
    border: 1.5px solid rgba(61,47,42,.16) !important;
    border-radius: 14px !important;
    background: white !important;
    padding: 12px 16px !important;
    font-family: 'Nunito',sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    transition: border-color .2s,box-shadow .2s !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--green) !important;
    box-shadow: 0 0 0 4px rgba(123,149,92,.1) !important;
    outline: none !important;
}
.woocommerce-checkout-review-order-table thead tr {
    background: #f5eadb;
}
.woocommerce-checkout-review-order-table thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #7d6b62;
}
.woocommerce-checkout #payment ul.payment_methods li:has(input:checked) {
    border-color: var(--green) !important;
    background: #f4f8ee;
}
.woocommerce #payment #place_order {
    width: 100%;
    min-height: 56px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px !important;
    background: var(--orange) !important;
    color: white !important;
    font-family: 'Nunito',sans-serif !important;
    font-weight: 900 !important;
    font-size: 17px !important;
    border: none !important;
    box-shadow: 0 14px 28px rgba(242,161,74,.28) !important;
    cursor: pointer;
    transition: .25s !important;
}
.woocommerce #payment #place_order:hover {
    background: #e8913a !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(242,161,74,.32) !important;
}
/* Empty cart */
.woocommerce-cart .cart-empty {
    text-align: center;
    padding: 80px 20px;
    font-size: 20px;
    font-weight: 800;
    color: #7d6b62;
    background: #fffdf9;
    border-radius: 28px;
    border: 1px solid rgba(123,149,92,.12);
    box-shadow: 0 18px 40px rgba(0,0,0,.04);
}
.woocommerce-cart .return-to-shop {
    text-align: center;
    margin-top: 20px;
}
.woocommerce-cart .return-to-shop .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 999px !important;
    background: var(--orange) !important;
    color: white !important;
    font-family: 'Nunito',sans-serif !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(242,161,74,.28);
    transition: .25s;
    border: none !important;
}
.woocommerce-cart .return-to-shop .button:hover {
    background: #e8913a !important;
    transform: translateY(-3px);
}
@media(max-width:768px) {
    .cart-page-wrapper,
.checkout-page-wrapper {
        padding: 40px 0 80px;
    }
    .cart-page-wrapper h1,
.checkout-page-wrapper h1 {
        font-size: 38px;
    }
    .woocommerce-cart .cart-collaterals {
        justify-content: stretch;
    }
    .woocommerce-cart .cart_totals {
        width: 100%;
    }
}
/* ================================================= */
/* DRVENA LIJA - POLISHED CART & CHECKOUT OVERRIDE   */
/* ================================================= */
body.woocommerce-cart,
body.woocommerce-checkout {
    background: var(--bg) !important;
}
/* Sakrij default update cart dugme jer će JS automatski ažurirati korpu */
body.woocommerce-cart button[name="update_cart"] {
    display: none !important;
}
/* General shell */
body.woocommerce-cart .dl-cart-shell,
body.woocommerce-checkout .dl-checkout-shell {
    width: min(1160px, 92%) !important;
    max-width: 1160px !important;
    margin: 38px auto 0 !important;
}
/* Checkout layout */
body.woocommerce-checkout form.checkout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 420px !important;
    gap: 30px !important;
    align-items: start !important;
}
/* Billing/customer box */
body.woocommerce-checkout #customer_details {
    background: #fffdf9 !important;
    border: 1px solid rgba(123,149,92,.16) !important;
    border-radius: 30px !important;
    box-shadow: 0 18px 46px rgba(61,47,42,.08) !important;
    padding: 34px !important;
    overflow: hidden !important;
}
/* Order review heading */
body.woocommerce-checkout #order_review_heading {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 0 -12px !important;
    padding: 0 4px !important;
    font-size: 26px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    color: var(--text) !important;
}
/* Order review card */
body.woocommerce-checkout .woocommerce-checkout-review-order {
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    margin-top: 46px !important;
    background: #fffdf9 !important;
    border: 1px solid rgba(123,149,92,.16) !important;
    border-radius: 30px !important;
    box-shadow: 0 18px 46px rgba(61,47,42,.08) !important;
    overflow: hidden !important;
    position: sticky !important;
    top: 130px !important;
}
/* Checkout titles */
body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout h3 {
    font-size: 28px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    margin: 0 0 22px !important;
}
/* Two-column form fields where WooCommerce uses first/last */
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 18px !important;
}
body.woocommerce-checkout .form-row {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.woocommerce-checkout .form-row-wide,
body.woocommerce-checkout #billing_address_1_field,
body.woocommerce-checkout #billing_address_2_field,
body.woocommerce-checkout #billing_city_field,
body.woocommerce-checkout #billing_postcode_field,
body.woocommerce-checkout #billing_phone_field,
body.woocommerce-checkout #billing_email_field,
body.woocommerce-checkout #order_comments_field {
    grid-column: 1 / -1 !important;
}
/* Labels */
body.woocommerce-checkout form .form-row label {
    display: block !important;
    margin-bottom: 7px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    color: #4b3a34 !important;
}
/* Required star */
body.woocommerce-checkout abbr.required {
    color: var(--orange) !important;
    text-decoration: none !important;
}
/* Inputs */
body.woocommerce-checkout form .form-row input.input-text,
body.woocommerce-checkout form .form-row textarea,
body.woocommerce-checkout form .form-row select,
body.woocommerce-checkout .select2-container .select2-selection--single {
    width: 100% !important;
    min-height: 50px !important;
    border: 1.5px solid rgba(61,47,42,.15) !important;
    border-radius: 16px !important;
    background: #fff !important;
    padding: 12px 15px !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    box-shadow: none !important;
    outline: none !important;
    transition: border-color .2s ease, box-shadow .2s ease !important;
}
body.woocommerce-checkout .select2-container .select2-selection--single {
    display: flex !important;
    align-items: center !important;
    padding: 0 15px !important;
}
body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 !important;
    color: var(--text) !important;
    font-weight: 700 !important;
    line-height: 50px !important;
}
body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
    right: 12px !important;
}
body.woocommerce-checkout form .form-row input.input-text:focus,
body.woocommerce-checkout form .form-row textarea:focus,
body.woocommerce-checkout form .form-row select:focus,
body.woocommerce-checkout .select2-container--focus .select2-selection--single {
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 4px rgba(242,161,74,.14) !important;
}
body.woocommerce-checkout form .form-row textarea {
    min-height: 120px !important;
    resize: vertical !important;
}
/* Separate additional fields */
body.woocommerce-checkout #customer_details .col-2 {
    margin-top: 28px !important;
    padding-top: 28px !important;
    border-top: 1px solid rgba(61,47,42,.08) !important;
}
/* Order review table */
body.woocommerce-checkout table.shop_table {
    border: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}
body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
    border: 0 !important;
    border-bottom: 1px solid rgba(61,47,42,.08) !important;
    padding: 16px 20px !important;
    font-family: 'Nunito', sans-serif !important;
    vertical-align: middle !important;
}
body.woocommerce-checkout table.shop_table thead th {
    background: #f5eadb !important;
    color: var(--text) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .4px !important;
}
body.woocommerce-checkout table.shop_table .product-name {
    color: var(--text) !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
}
body.woocommerce-checkout table.shop_table .product-total,
body.woocommerce-checkout table.shop_table td:last-child {
    text-align: right !important;
    font-weight: 900 !important;
    color: var(--green) !important;
}
body.woocommerce-checkout table.shop_table tfoot th,
body.woocommerce-checkout table.shop_table tfoot td {
    background: #fff8ef !important;
    font-weight: 900 !important;
}
body.woocommerce-checkout table.shop_table .order-total th,
body.woocommerce-checkout table.shop_table .order-total td {
    background: #f5eadb !important;
    color: var(--green) !important;
    font-size: 18px !important;
}
/* Payment section */
body.woocommerce-checkout #payment {
    background: #fff8ef !important;
    border: 0 !important;
    border-radius: 0 0 30px 30px !important;
    padding: 22px !important;
}
body.woocommerce-checkout #payment ul.payment_methods {
    padding: 0 !important;
    margin: 0 0 18px !important;
    border: 0 !important;
    display: grid !important;
    gap: 12px !important;
}
body.woocommerce-checkout #payment ul.payment_methods li {
    margin: 0 !important;
    padding: 16px 18px !important;
    border-radius: 20px !important;
    background: #fffdf9 !important;
    border: 1.5px solid rgba(123,149,92,.16) !important;
    box-shadow: 0 8px 20px rgba(61,47,42,.04) !important;
    font-family: 'Nunito', sans-serif !important;
}
body.woocommerce-checkout #payment ul.payment_methods li input {
    margin-right: 10px !important;
    accent-color: var(--green) !important;
}
body.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 900 !important;
    color: var(--text) !important;
}
body.woocommerce-checkout #payment div.payment_box {
    margin: 14px 0 0 !important;
    padding: 14px 16px !important;
    border-radius: 16px !important;
    background: #f5eadb !important;
    color: #5f5149 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}
body.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}
/* Privacy text */
body.woocommerce-checkout .woocommerce-privacy-policy-text {
    margin: 16px 0 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: #6f625a !important;
}
/* Place order button */
body.woocommerce-checkout #payment #place_order,
body.woocommerce-checkout button#place_order {
    width: 100% !important;
    min-height: 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: var(--orange) !important;
    color: #fff !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    box-shadow: 0 14px 28px rgba(242,161,74,.28) !important;
    transition: .25s !important;
}
body.woocommerce-checkout #payment #place_order:hover,
body.woocommerce-checkout button#place_order:hover {
    background: #e8913a !important;
    transform: translateY(-2px) !important;
}
/* Validation / messages */
body.woocommerce-checkout .woocommerce-error,
body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-message {
    border: 0 !important;
    border-radius: 22px !important;
    background: #fffdf9 !important;
    box-shadow: 0 12px 34px rgba(61,47,42,.06) !important;
    color: var(--text) !important;
    padding: 18px 20px !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 800 !important;
}
/* Cart totals - Serbian-like cleaner look */
body.woocommerce-cart .cart_totals {
    background: #fffdf9 !important;
    border: 1px solid rgba(123,149,92,.16) !important;
    border-radius: 30px !important;
    box-shadow: 0 18px 46px rgba(61,47,42,.08) !important;
    overflow: hidden !important;
    padding: 0 !important;
}
body.woocommerce-cart .cart_totals h2 {
    padding: 26px 26px 16px !important;
    margin: 0 !important;
    font-size: 25px !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    background: #fffdf9 !important;
    border-bottom: 0 !important;
    line-height: 1.15 !important;
    position: relative !important;
}
body.woocommerce-cart .cart_totals table th,
body.woocommerce-cart .cart_totals table td {
    padding: 14px 28px !important;
    border-bottom: 1px solid rgba(61,47,42,.08) !important;
    font-family: 'Nunito', sans-serif !important;
    border: 0 !important;
    background: transparent !important;
}
body.woocommerce-cart .cart_totals table th {
    color: #8a766b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .45px !important;
    width: 42% !important;
    background: #f5eadb !important;
    line-height: 1.2 !important;
}
body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
    background: transparent !important;
    color: var(--green) !important;
    font-size: 17px !important;
    font-weight: 900 !important;
}
/* Free shipping text / shipping destination notices hide */
body.woocommerce-cart .woocommerce-shipping-destination,
body.woocommerce-cart .woocommerce-shipping-calculator,
body.woocommerce-cart .shipping,
body.woocommerce-checkout .woocommerce-shipping-destination,
body.woocommerce-checkout .woocommerce-shipping-calculator {
    display: none !important;
}
/* Mobile */
@media (max-width: 950px) {
    body.woocommerce-checkout form.checkout {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }
    body.woocommerce-checkout #order_review_heading,
    body.woocommerce-checkout .woocommerce-checkout-review-order {
        grid-column: 1 !important;
        grid-row: auto !important;
        margin-top: 0 !important;
        position: static !important;
    }
    body.woocommerce-checkout #customer_details {
        padding: 24px !important;
    }
    body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
    body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr !important;
    }
    body.woocommerce-checkout table.shop_table th,
    body.woocommerce-checkout table.shop_table td {
        padding: 14px 16px !important;
    }
}
@media (max-width: 600px) {
    body.woocommerce-checkout #customer_details,
    body.woocommerce-checkout .woocommerce-checkout-review-order,
    body.woocommerce-cart .cart_totals {
        border-radius: 22px !important;
    }
    body.woocommerce-checkout .woocommerce-billing-fields h3,
    body.woocommerce-checkout .woocommerce-additional-fields h3,
    body.woocommerce-checkout h3,
    body.woocommerce-checkout #order_review_heading {
        font-size: 23px !important;
    }
}
/* =========================== */
/* FIX: BEST SELLERS MOBILE CAROUSEL */
/* =========================== */
.best-sellers-products .dl-product-link {
    height: 100%;
}
@media (max-width: 700px) {
    .best-sellers-scroll {
        padding: 54px 0 80px;
        overflow: hidden;
    }
    .best-sellers-scroll .container {
        width: 100%;
        max-width: none;
        padding-left: 16px;
        padding-right: 0;
        overflow: visible;
    }
    .best-sellers-products {
        overflow: visible;
    }
    .best-sellers-products ul.products {
        gap: 16px !important;
        padding: 8px 16px 22px 0 !important;
        scroll-padding-left: 16px;
    }
    .best-sellers-products ul.products li.product {
        flex-basis: 78vw !important;
        width: 78vw !important;
        min-width: 78vw !important;
        max-width: 78vw !important;
    }
}
@media (max-width: 420px) {
    .best-sellers-products ul.products li.product {
        flex-basis: 82vw !important;
        width: 82vw !important;
        min-width: 82vw !important;
        max-width: 82vw !important;
    }
}
@media (min-width: 701px) {
    .best-sellers-products ul.products {
        overflow-x: hidden !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 22px !important;
    }
    .best-sellers-products ul.products li.product {
        flex: 0 0 clamp(230px, 21vw, 280px) !important;
        width: clamp(230px, 21vw, 280px) !important;
        min-width: clamp(230px, 21vw, 280px) !important;
        max-width: clamp(230px, 21vw, 280px) !important;
    }
}
/* ================================================= */
/* FINAL FIX: HOME CATEGORY + BEST SELLERS CAROUSELS */
/* ================================================= */
/* Desktop/tablet kategorije: ne seci karticu kada se window smanjuje */
/* Srednje širine: malo uži prostor za strelice, više mesta za karticu */
@media (max-width: 1100px) and (min-width: 701px) {
    .home-scroll-wrap {
        padding-left: 52px !important;
        padding-right: 52px !important;
    }
    .categories.home-scroll-row .category-card {
        flex-basis: clamp(240px, 34vw, 300px) !important;
        width: clamp(240px, 34vw, 300px) !important;
        min-width: clamp(240px, 34vw, 300px) !important;
        max-width: clamp(240px, 34vw, 300px) !important;
    }
}
/* Mobile kategorije */
@media (max-width: 700px) {
    .categories.home-scroll-row {
        gap: 14px !important;
        padding: 8px 0 22px !important;
        overflow-x: hidden !important;
    }
    .categories.home-scroll-row .category-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
}
/* Best sellers: desktop/tablet prikazuje više proizvoda koliko stane */
@media (min-width: 701px) {
    .best-sellers-scroll .home-scroll-wrap {
        padding-left: 70px !important;
        padding-right: 70px !important;
        overflow: visible !important;
    }
    .best-sellers-products {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .best-sellers-products ul.products {
        display: flex !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        gap: 22px !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        padding: 8px 2px 24px !important;
        margin: 0 !important;
    }
    .best-sellers-products ul.products li.product {
        flex: 0 0 clamp(220px, 21vw, 280px) !important;
        width: clamp(220px, 21vw, 280px) !important;
        min-width: clamp(220px, 21vw, 280px) !important;
        max-width: clamp(220px, 21vw, 280px) !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
}
/* Best sellers mobile: jedan proizvod, bez odsecanja desno */
@media (max-width: 700px) {
    .best-sellers-scroll .home-scroll-wrap {
        padding-left: 40px !important;
        padding-right: 40px !important;
        overflow: visible !important;
    }
    .best-sellers-products {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .best-sellers-products ul.products {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        padding: 8px 0 24px !important;
        margin: 0 !important;
        scroll-snap-type: none !important;
        touch-action: pan-y !important;
    }
    .best-sellers-products ul.products li.product {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 0 2px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    .best-sellers-products .dl-product-link {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
}
/* Vrlo mali telefoni: još malo više prostora za karticu */
@media (max-width: 390px) {
    .best-sellers-scroll .home-scroll-wrap {
        padding-left: 34px !important;
        padding-right: 34px !important;
    }
}
/* ================================================= */
/* FIX: KATEGORIJE CAROUSEL - SAME CARD HEIGHT       */
/* ================================================= */
.categories.home-scroll-row .category-card img {
    height: 255px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    flex: 0 0 255px !important;
}
.categories.home-scroll-row .category-content {
    flex: 1 !important;
    min-height: 141px !important;
    height: 141px !important;
    padding: 14px 14px 16px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: 1fr auto !important;
    gap: 8px 12px !important;
    align-items: end !important;
}
.categories.home-scroll-row .category-content > div {
    display: contents !important;
}
.categories.home-scroll-row .category-content h3 {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    align-self: start !important;
    margin: 0 !important;
    font-size: 20px !important;
    line-height: 1.08 !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.categories.home-scroll-row .category-content .cat-count {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: start !important;
    align-self: end !important;
    margin: 0 !important;
}
.categories.home-scroll-row .category-content .category-cta {
    grid-column: 2 !important;
    grid-row: 2 !important;
    justify-self: end !important;
    align-self: end !important;
    margin: 0 !important;
}
/* Srednje širine */
@media (max-width: 900px) and (min-width: 701px) {
    .categories.home-scroll-row .category-card {
        height: 380px !important;
    }
    .categories.home-scroll-row .category-card img {
        height: 240px !important;
        flex-basis: 240px !important;
    }
    .categories.home-scroll-row .category-content {
        height: 140px !important;
        min-height: 140px !important;
    }
}
/* Mobile */
@media (max-width: 700px) {
    .categories.home-scroll-row .category-card {
        height: 365px !important;
    }
    .categories.home-scroll-row .category-card img {
        height: 225px !important;
        flex-basis: 225px !important;
    }
    .categories.home-scroll-row .category-content {
        height: 140px !important;
        min-height: 140px !important;
        padding: 14px !important;
    }
    .categories.home-scroll-row .category-content h3 {
        font-size: 19px !important;
    }
}
/* =========================== */
/* CHECKOUT PAGE               */
/* =========================== */
.dl-checkout-page {
    min-height: 100vh;
    background: linear-gradient(160deg, #fffdf9 0%, #f5ece0 55%, #ede0cc 100%);
    padding: 0 0 120px;
    position: relative;
}
/* --- Hero strip --- */
.dl-checkout-hero {
    position: relative;
    padding: 56px 0 48px;
    text-align: center;
    overflow: hidden;
}
.dl-checkout-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(123,149,92,.09) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(242,161,74,.07) 0%, transparent 70%);
    pointer-events: none;
}
.dl-checkout-hero h1 {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text);
    line-height: 1;
    margin-bottom: 10px;
}
.dl-checkout-hero h1 span {
    color: var(--green);
}
.dl-checkout-hero p {
    font-size: 16px;
    color: #7d6b62;
    font-weight: 700;
}
/* --- Progress steps --- */
.dl-checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
}
.dl-step {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.dl-step-bubble {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(123,149,92,.25);
    background: #fffdf9;
    color: #aaa09a;
    transition: all .3s ease;
    flex-shrink: 0;
}
.dl-step-label {
    font-size: 13px;
    font-weight: 900;
    color: #b0a29a;
    white-space: nowrap;
    transition: color .3s ease;
}
.dl-step-connector {
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, rgba(123,149,92,.25), rgba(123,149,92,.1));
    margin: 0 4px;
    flex-shrink: 0;
}
.dl-step.is-done .dl-step-bubble {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}
.dl-step.is-done .dl-step-label {
    color: var(--green);
}
.dl-step.is-active .dl-step-bubble {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 8px 20px rgba(242,161,74,.32);
}
.dl-step.is-active .dl-step-label {
    color: var(--text);
}
/* --- Trust badges --- */
.dl-checkout-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.dl-trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,253,249,.85);
    border: 1px solid rgba(123,149,92,.16);
    font-size: 13px;
    font-weight: 800;
    color: #6b5a50;
    box-shadow: 0 4px 12px rgba(61,47,42,.05);
}
.dl-trust-badge svg {
    width: 15px;
    height: 15px;
    color: var(--green);
    flex-shrink: 0;
}
/* --- Decorative blobs --- */
.dl-checkout-blob {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: .4;
}
.dl-checkout-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123,149,92,.18) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}
.dl-checkout-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242,161,74,.15) 0%, transparent 70%);
    bottom: 100px;
    left: -100px;
}
/* --- Main two-column grid --- */
.dl-checkout-grid {
    width: min(1200px, 94%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    align-items: start;
    position: relative;
    z-index: 1;
}
/* --- Right-column summary card (built by JS) --- */
.dl-order-summary-card {
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.15);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(61,47,42,.08);
    overflow: hidden;
    position: sticky;
    top: 118px;
}
.dl-order-summary-header {
    background: linear-gradient(135deg, #f5eadb 0%, #ede0cc 100%);
    padding: 20px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(61,47,42,.08);
}
.dl-order-summary-header h2 {
    font-size: 19px;
    font-weight: 900;
    color: var(--text);
    margin: 0;
}
.dl-order-summary-header a {
    font-size: 13px;
    font-weight: 800;
    color: var(--green);
    text-decoration: none;
    transition: color .2s;
}
.dl-order-summary-header a:hover {
    color: var(--orange);
}
.dl-order-summary-body {
    overflow: hidden;
}
/* --- WooCommerce form overrides (scoped to checkout page) --- */
.dl-checkout-page .woocommerce-checkout #customer_details {
    background: #fffdf9 !important;
    border: 1px solid rgba(123,149,92,.15) !important;
    border-radius: 28px !important;
    box-shadow: 0 20px 50px rgba(61,47,42,.07) !important;
    padding: 36px !important;
    overflow: visible !important;
}
.dl-checkout-page .woocommerce-billing-fields > h3,
.dl-checkout-page .woocommerce-additional-fields > h3,
.dl-checkout-page .woocommerce-checkout h3 {
    font-size: 20px !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    margin: 0 0 22px !important;
    padding-bottom: 14px !important;
    border-bottom: 1px solid rgba(61,47,42,.08) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
.dl-checkout-page .woocommerce-billing-fields > h3::before {
    content: "📦";
    font-size: 18px;
}
.dl-checkout-page .woocommerce-additional-fields > h3::before {
    content: "📝";
    font-size: 18px;
}
/* Two-column field grid */
.dl-checkout-page .woocommerce-billing-fields__field-wrapper,
.dl-checkout-page .woocommerce-shipping-fields__field-wrapper,
.dl-checkout-page .woocommerce-additional-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 18px !important;
}
.dl-checkout-page .form-row {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* Full-width fields */
.dl-checkout-page .form-row-wide,
.dl-checkout-page #billing_address_1_field,
.dl-checkout-page #billing_address_2_field,
.dl-checkout-page #billing_city_field,
.dl-checkout-page #billing_postcode_field,
.dl-checkout-page #billing_phone_field,
.dl-checkout-page #billing_email_field,
.dl-checkout-page #order_comments_field {
    grid-column: 1 / -1 !important;
}
/* Labels */
.dl-checkout-page form .form-row label {
    display: block !important;
    margin-bottom: 7px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    color: #7d6b62 !important;
    text-transform: uppercase !important;
    letter-spacing: .6px !important;
}
.dl-checkout-page abbr.required {
    color: var(--orange) !important;
    text-decoration: none !important;
}
/* Inputs / textareas / selects */
.dl-checkout-page form .form-row input.input-text,
.dl-checkout-page form .form-row textarea,
.dl-checkout-page form .form-row select,
.dl-checkout-page .select2-container .select2-selection--single {
    width: 100% !important;
    min-height: 50px !important;
    border: 1.5px solid rgba(61,47,42,.14) !important;
    border-radius: 14px !important;
    background: #fff !important;
    padding: 13px 16px !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    outline: none !important;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease !important;
    box-sizing: border-box !important;
    box-shadow: 0 2px 8px rgba(61,47,42,.04) !important;
}
.dl-checkout-page form .form-row input.input-text:hover,
.dl-checkout-page form .form-row textarea:hover,
.dl-checkout-page form .form-row select:hover {
    border-color: rgba(123,149,92,.4) !important;
}
.dl-checkout-page form .form-row input.input-text:focus,
.dl-checkout-page form .form-row textarea:focus,
.dl-checkout-page form .form-row select:focus,
.dl-checkout-page .select2-container--focus .select2-selection--single {
    border-color: var(--green) !important;
    box-shadow: 0 0 0 4px rgba(123,149,92,.12) !important;
    background: #fffdf9 !important;
}
.dl-checkout-page form .form-row textarea {
    min-height: 110px !important;
    resize: vertical !important;
}
/* Select2 */
.dl-checkout-page .select2-container .select2-selection--single {
    display: flex !important;
    align-items: center !important;
    padding: 0 16px !important;
}
.dl-checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 !important;
    color: var(--text) !important;
    font-weight: 700 !important;
    line-height: 50px !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 15px !important;
}
.dl-checkout-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
    right: 14px !important;
}
/* Validation */
.dl-checkout-page .woocommerce-invalid input.input-text,
.dl-checkout-page .woocommerce-invalid textarea,
.dl-checkout-page .woocommerce-invalid select {
    border-color: #e07a5f !important;
    box-shadow: 0 0 0 3px rgba(224,122,95,.12) !important;
}
/* Shipping col-2 separator */
.dl-checkout-page #customer_details .col-2 {
    margin-top: 28px !important;
    padding-top: 28px !important;
    border-top: 1px solid rgba(61,47,42,.08) !important;
    float: none !important;
    width: 100% !important;
}
/* Order review table inside the right-column clone */
.dl-checkout-page .woocommerce-checkout-review-order {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.dl-checkout-page table.woocommerce-checkout-review-order-table {
    width: 100% !important;
    border: 0 !important;
    border-collapse: collapse !important;
    margin: 0 !important;
    background: transparent !important;
    border-spacing: 0 !important;
}
.dl-checkout-page .woocommerce-checkout-review-order-table thead {
    display: none !important;
}
.dl-checkout-page .woocommerce-checkout-review-order-table .cart_item td {
    padding: 16px 24px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(61,47,42,.07) !important;
    vertical-align: middle !important;
}
.dl-checkout-page .woocommerce-checkout-review-order-table .product-name {
    font-size: 14px !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    line-height: 1.35 !important;
}
.dl-checkout-page .woocommerce-checkout-review-order-table .product-name .product-quantity {
    color: #7d6b62 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}
.dl-checkout-page .woocommerce-checkout-review-order-table .product-total {
    text-align: right !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    color: var(--green) !important;
    white-space: nowrap !important;
}
.dl-checkout-page .woocommerce-checkout-review-order-table tfoot tr th,
.dl-checkout-page .woocommerce-checkout-review-order-table tfoot tr td {
    padding: 14px 24px !important;
    border: 0 !important;
    border-top: 1px solid rgba(61,47,42,.07) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    color: #7d6b62 !important;
    background: transparent !important;
}
.dl-checkout-page .woocommerce-checkout-review-order-table tfoot td {
    text-align: right !important;
    color: var(--text) !important;
}
.dl-checkout-page .woocommerce-checkout-review-order-table .order-total th,
.dl-checkout-page .woocommerce-checkout-review-order-table .order-total td {
    padding: 18px 24px !important;
    background: linear-gradient(135deg, #f5eadb, #ede0cc) !important;
    font-size: 18px !important;
    color: var(--green) !important;
}
/* --- Payment section --- */
.dl-checkout-page #payment {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 24px 24px !important;
}
.dl-checkout-page #payment ul.payment_methods {
    padding: 0 !important;
    margin: 0 0 20px !important;
    border: 0 !important;
    display: grid !important;
    gap: 10px !important;
    list-style: none !important;
}
.dl-checkout-page #payment ul.payment_methods li {
    margin: 0 !important;
    padding: 16px 18px !important;
    border-radius: 16px !important;
    background: #fffdf9 !important;
    border: 1.5px solid rgba(123,149,92,.16) !important;
    transition: border-color .2s, box-shadow .2s !important;
}
.dl-checkout-page #payment ul.payment_methods li:has(input:checked) {
    border-color: var(--green) !important;
    background: #f4f8ee !important;
    box-shadow: 0 4px 16px rgba(123,149,92,.12) !important;
}
.dl-checkout-page #payment ul.payment_methods li input[type="radio"] {
    margin-right: 10px !important;
    accent-color: var(--green) !important;
}
.dl-checkout-page #payment ul.payment_methods li label {
    font-weight: 900 !important;
    font-size: 15px !important;
    color: var(--text) !important;
    cursor: pointer !important;
    display: block !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1.35 !important;
    width: 100% !important;
}
.dl-checkout-page #payment div.payment_box {
    margin: 14px 0 0 !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
    background: #eef3e8 !important;
    color: #5f5149 !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}
.dl-checkout-page #payment div.payment_box::before {
    display: none !important;
}
/* Privacy text */
.dl-checkout-page .woocommerce-privacy-policy-text {
    margin: 14px 0 18px !important;
    font-size: 12px !important;
    line-height: 1.65 !important;
    color: #9d8d84 !important;
    text-align: center !important;
}
.dl-checkout-page .woocommerce-privacy-policy-text a {
    color: var(--green) !important;
    font-weight: 800 !important;
}
/* Place order button */
.dl-checkout-page #payment #place_order,
.dl-checkout-page button#place_order {
    width: 100% !important;
    min-height: 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: var(--orange) !important;
    color: #fff !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: -.3px !important;
    box-shadow: 0 14px 30px rgba(242,161,74,.32) !important;
    cursor: pointer !important;
    transition: background .25s ease, transform .2s ease, box-shadow .25s ease !important;
}
.dl-checkout-page #payment #place_order:hover,
.dl-checkout-page button#place_order:hover {
    background: #e8913a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 20px 40px rgba(242,161,74,.38) !important;
}
/* Notices */
.dl-checkout-page .woocommerce-error,
.dl-checkout-page .woocommerce-info,
.dl-checkout-page .woocommerce-message {
    border: 0 !important;
    border-radius: 18px !important;
    background: #fffdf9 !important;
    box-shadow: 0 10px 28px rgba(61,47,42,.06) !important;
    color: var(--text) !important;
    padding: 16px 20px !important;
    font-weight: 800 !important;
    margin-bottom: 24px !important;
    font-size: 14px !important;
}
.dl-checkout-page .woocommerce-error {
    border-left: 4px solid #e07a5f !important;
    background: #fff8f6 !important;
}
.dl-checkout-page .woocommerce-info {
    border-left: 4px solid var(--green) !important;
    background: #f4f8ee !important;
}
/* Coupon toggle */
.dl-checkout-page .woocommerce-form-coupon-toggle {
    margin-bottom: 20px !important;
}
/* --- Responsive --- */
@media (max-width: 1050px) {
    .dl-checkout-grid {
        grid-template-columns: 1fr 380px;
        gap: 24px;
    }
}
@media (max-width: 880px) {
    .dl-checkout-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .dl-order-summary-card {
        position: static;
        order: -1;
    }
    .dl-checkout-hero h1 {
        font-size: 38px;
    }
    .dl-checkout-page .woocommerce-checkout #customer_details {
        padding: 26px !important;
    }
    .dl-checkout-page .woocommerce-billing-fields__field-wrapper,
    .dl-checkout-page .woocommerce-shipping-fields__field-wrapper,
    .dl-checkout-page .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr !important;
    }
    .dl-step-label {
        display: none;
    }
    .dl-step-connector {
        width: 30px;
    }
}
@media (max-width: 600px) {
    .dl-checkout-hero {
        padding: 36px 0 32px;
    }
    .dl-checkout-hero h1 {
        font-size: 32px;
        letter-spacing: -1.5px;
    }
    .dl-checkout-trust {
        gap: 10px;
    }
    .dl-trust-badge {
        font-size: 12px;
        padding: 7px 13px;
    }
    .dl-checkout-page .woocommerce-checkout #customer_details {
        padding: 20px 18px !important;
        border-radius: 22px !important;
    }
    .dl-order-summary-card {
        border-radius: 22px;
    }
    .dl-checkout-page #payment {
        padding: 0 18px 20px !important;
    }
    .dl-checkout-page #payment #place_order,
    .dl-checkout-page button#place_order {
        font-size: 16px !important;
        min-height: 54px !important;
    }
}
/* ======================================================
   FINAL FIXES - cart/checkout/mobile corrections
   ====================================================== */
/* Mobile header: keep the logo from making the header too tall. */
@media (max-width: 900px) {
    .navbar {
        padding: 10px 0 !important;
        min-height: 84px !important;
    }
    .logo img {
        height: 64px !important;
        max-width: 172px !important;
        object-fit: contain !important;
    }
    .nav-cart {
        width: 44px !important;
        height: 44px !important;
    }
}
@media (max-width: 420px) {
    .logo img {
        height: 58px !important;
        max-width: 158px !important;
    }
}
/* Product detail page: show the full product photo instead of cropping it. */
@media (max-width: 768px) {
    .single-product .dl-main-product-image {
        min-height: 360px !important;
    }
    .single-product .dl-main-product-image img {
        max-height: 430px !important;
    }
}
/* Cart: restore predictable column widths and remove the large empty gap before product info. */
body.woocommerce-cart .woocommerce-cart-form {
    overflow-x: auto !important;
    grid-column: 1 !important;
    width: 100% !important;
    margin: 0 !important;
    background: rgba(255,253,249,.98) !important;
    border: 1px solid rgba(123,149,92,.16) !important;
    border-radius: 32px !important;
    box-shadow: 0 24px 62px rgba(61,47,42,.09) !important;
    overflow: hidden !important;
}
body.woocommerce-cart table.cart,
body.woocommerce-cart table.shop_table.cart,
body.woocommerce-cart .woocommerce-cart-form__contents {
    width: 100% !important;
    table-layout: fixed !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}
body.woocommerce-cart table.cart th,
body.woocommerce-cart table.cart td {
    vertical-align: middle !important;
}
body.woocommerce-cart table.cart .product-remove {
    width: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    text-align: center !important;
    padding-left: 22px !important;
    padding-right: 4px !important;
}
body.woocommerce-cart table.cart .product-thumbnail {
    width: 98px !important;
    min-width: 98px !important;
    max-width: 98px !important;
    text-align: left !important;
    padding-left: 8px !important;
    padding-right: 12px !important;
}
body.woocommerce-cart table.cart .product-thumbnail img {
    width: 72px !important;
    height: 72px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 24px rgba(61,47,42,.10) !important;
    border: 1px solid rgba(123,149,92,.12) !important;
    background: #fff !important;
}
body.woocommerce-cart table.cart .product-name {
    width: auto !important;
    min-width: 180px !important;
    text-align: left !important;
    padding-left: 12px !important;
}
body.woocommerce-cart table.cart .product-price {
    width: 122px !important;
    min-width: 110px !important;
    white-space: nowrap !important;
    color: #3d2f2a !important;
    font-weight: 800 !important;
}
body.woocommerce-cart table.cart .product-quantity {
    width: 132px !important;
    min-width: 126px !important;
    text-align: center !important;
}
body.woocommerce-cart table.cart .product-subtotal {
    width: 142px !important;
    min-width: 140px !important;
    text-align: right !important;
    white-space: nowrap !important;
    color: var(--green) !important;
    font-weight: 900 !important;
}
body.woocommerce-cart .quantity input.qty {
    margin: 0 auto !important;
}
/* Do not hide the actual shipping row; hide only destination/calculator helper text. */
body.woocommerce-cart tr.shipping {
    display: table-row !important;
}
body.woocommerce-cart li.shipping {
    display: list-item !important;
}
body.woocommerce-cart .woocommerce-shipping-destination,
body.woocommerce-cart .woocommerce-shipping-calculator,
body.woocommerce-checkout .woocommerce-shipping-destination,
body.woocommerce-checkout .woocommerce-shipping-calculator {
    display: none !important;
}
@media (max-width: 768px) {
    body.woocommerce-cart table.cart,
    body.woocommerce-cart table.cart tbody,
    body.woocommerce-cart table.cart tr,
    body.woocommerce-cart table.cart td {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }
    body.woocommerce-cart table.cart thead {
        display: none !important;
    }
    body.woocommerce-cart table.cart tr.cart_item {
        margin-bottom: 18px !important;
        padding: 16px !important;
        border: 1px solid rgba(123,149,92,.14) !important;
        border-radius: 22px !important;
        background: #fffdf9 !important;
    }
    body.woocommerce-cart table.cart td {
        padding: 8px 0 !important;
        border: 0 !important;
        text-align: left !important;
    }
    body.woocommerce-cart table.cart .product-remove {
        text-align: right !important;
        padding: 0 !important;
    }
    body.woocommerce-cart table.cart .product-thumbnail {
        padding: 4px 0 10px !important;
    }
    body.woocommerce-cart table.cart .product-thumbnail img {
        width: 96px !important;
        height: 96px !important;
    }
    body.woocommerce-cart table.cart .product-price::before {
        content: "Cena: ";
        font-weight: 900;
    }
    body.woocommerce-cart table.cart .product-quantity::before {
        content: "Količina: ";
        font-weight: 900;
        margin-right: 8px;
    }
    body.woocommerce-cart table.cart .product-subtotal::before {
        content: "Međuzbir: ";
        font-weight: 900;
    }
    body.woocommerce-cart table.cart .product-subtotal,
    body.woocommerce-cart table.cart .product-price,
    body.woocommerce-cart table.cart .product-quantity {
        text-align: left !important;
    }
    body.woocommerce-cart .quantity input.qty {
        display: inline-flex !important;
        margin: 0 !important;
    }
}
/* Checkout: use the real WooCommerce order review inside the form; no cloned payment/order markup. */
.dl-checkout-page .dl-checkout-shell {
    width: min(1200px, 94%) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1 !important;
}
.dl-checkout-page form.checkout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) !important;
    gap: 32px !important;
    align-items: start !important;
    width: 100% !important;
}
.dl-checkout-page form.checkout #customer_details {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}
.dl-checkout-page form.checkout #customer_details .col-1,
.dl-checkout-page form.checkout #customer_details .col-2 {
    float: none !important;
    width: 100% !important;
}
.dl-checkout-page form.checkout #order_review_heading {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    padding: 20px 26px !important;
    border: 1px solid rgba(123,149,92,.15) !important;
    border-bottom: 0 !important;
    border-radius: 28px 28px 0 0 !important;
    background: linear-gradient(135deg, #f5eadb 0%, #ede0cc 100%) !important;
    color: var(--text) !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}
.dl-checkout-page form.checkout #order_review {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: sticky !important;
    top: 118px !important;
    background: #fffdf9 !important;
    border: 1px solid rgba(123,149,92,.15) !important;
    border-top: 0 !important;
    border-radius: 0 0 28px 28px !important;
    box-shadow: 0 20px 50px rgba(61,47,42,.08) !important;
    overflow: hidden !important;
}
.dl-checkout-page #dl-order-summary-wrap,
.dl-checkout-page .dl-order-summary-card {
    display: none !important;
}
@media (max-width: 880px) {
    .dl-checkout-page .dl-checkout-shell {
        width: min(680px, 94%) !important;
    }
    .dl-checkout-page form.checkout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .dl-checkout-page form.checkout #customer_details,
    .dl-checkout-page form.checkout #order_review_heading,
    .dl-checkout-page form.checkout #order_review {
        grid-column: 1 !important;
        grid-row: auto !important;
        position: static !important;
        top: auto !important;
    }
    .dl-checkout-page form.checkout #order_review_heading {
        margin-top: 2px !important;
    }
}
@media (max-width: 600px) {
    .dl-checkout-page form.checkout #order_review_heading {
        padding: 18px 20px !important;
        border-radius: 22px 22px 0 0 !important;
        font-size: 19px !important;
    }
    .dl-checkout-page form.checkout #order_review {
        border-radius: 0 0 22px 22px !important;
    }
    .dl-checkout-page .woocommerce-checkout-review-order-table .cart_item td,
    .dl-checkout-page .woocommerce-checkout-review-order-table tfoot tr th,
    .dl-checkout-page .woocommerce-checkout-review-order-table tfoot tr td {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}
/* ======================================================
   SECOND PASS FIXES - checkout sidebar, mobile product, reviews
   ====================================================== */
/* Checkout: real WooCommerce order review now lives inside one sidebar wrapper. */
.dl-checkout-page form.checkout.woocommerce-checkout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) !important;
    gap: 32px !important;
    align-items: start !important;
    width: 100% !important;
}
.dl-checkout-page form.checkout.woocommerce-checkout #customer_details {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    float: none !important;
}
.dl-checkout-page .dl-checkout-order-panel {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: sticky !important;
    top: 118px !important;
    align-self: start !important;
    background: #fffdf9 !important;
    border: 1px solid rgba(123,149,92,.15) !important;
    border-radius: 28px !important;
    box-shadow: 0 20px 50px rgba(61,47,42,.08) !important;
    overflow: hidden !important;
}
.dl-checkout-page .dl-checkout-order-panel #order_review_heading,
.dl-checkout-page form.checkout.woocommerce-checkout #order_review_heading {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 20px 26px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(61,47,42,.08) !important;
    border-radius: 0 !important;
    background: linear-gradient(135deg, #f5eadb 0%, #ede0cc 100%) !important;
    color: var(--text) !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    grid-column: auto !important;
    grid-row: auto !important;
}
.dl-checkout-page .dl-checkout-order-panel #order_review,
.dl-checkout-page form.checkout.woocommerce-checkout #order_review,
.dl-checkout-page form.checkout.woocommerce-checkout .woocommerce-checkout-review-order {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    top: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
}
.dl-checkout-page .dl-checkout-order-panel table.woocommerce-checkout-review-order-table {
    margin: 0 !important;
    width: 100% !important;
}
.dl-checkout-page .dl-checkout-order-panel #payment {
    margin: 0 !important;
    padding: 18px 22px 24px !important;
    border-radius: 0 !important;
}
.dl-checkout-page #payment ul.payment_methods li label img,
.dl-checkout-page #payment ul.payment_methods li img {
    display: block !important;
    max-width: 100% !important;
    width: auto !important;
    max-height: 72px !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 10px 0 0 !important;
}
@media (max-width: 880px) {
    .dl-checkout-page form.checkout.woocommerce-checkout {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }
    .dl-checkout-page form.checkout.woocommerce-checkout #customer_details,
    .dl-checkout-page .dl-checkout-order-panel {
        grid-column: 1 !important;
        grid-row: auto !important;
        position: static !important;
        top: auto !important;
    }
}
@media (max-width: 600px) {
    .dl-checkout-page .dl-checkout-shell {
        width: 94% !important;
    }
    .dl-checkout-page .dl-checkout-order-panel {
        border-radius: 22px !important;
    }
    .dl-checkout-page .dl-checkout-order-panel #order_review_heading {
        padding: 18px 20px !important;
        font-size: 19px !important;
    }
    .dl-checkout-page .dl-checkout-order-panel #payment {
        padding: 16px 18px 20px !important;
    }
}
/* Single product mobile: remove horizontal overflow that clips titles/content on iPhone width. */
@media (max-width: 700px) {
    html,
    body {
        overflow-x: hidden !important;
    }
    .single-product .product-page-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 24px 0 76px !important;
    }
    .single-product .product-page-wrapper > .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 16px !important;
        overflow: hidden !important;
    }
    .single-product .dl-breadcrumb-wrap {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    .single-product .dl-single-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        gap: 22px !important;
        justify-content: stretch !important;
    }
    .single-product .dl-single-gallery,
    .single-product .dl-custom-gallery,
    .single-product .dl-single-summary,
    .single-product .dl-tabs,
    .single-product .dl-related {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
    .single-product .dl-gallery-main-wrap {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
    }
    .single-product .dl-custom-gallery {
        padding: 10px !important;
        border-radius: 22px !important;
    }
    .single-product .dl-main-product-image {
        width: 100% !important;
        min-height: 300px !important;
        max-height: none !important;
    }
    .single-product .dl-main-product-image img {
        width: 100% !important;
        height: auto !important;
        max-height: 330px !important;
        object-fit: contain !important;
    }
    .single-product .dl-single-summary {
        padding: 22px 18px !important;
        border-radius: 22px !important;
        overflow: hidden !important;
    }
    .single-product .dl-single-title {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 32px !important;
        line-height: 1.08 !important;
        letter-spacing: -.4px !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }
    .single-product .dl-single-inquiry .btn,
    .single-product .single_add_to_cart_button {
        width: 100% !important;
    }
    .single-product .dl-tabs .panel {
        padding: 28px 18px !important;
    }
}
/* Reviews: WooCommerce star links should render as stars, not as raw "1 of 5 stars" text. */
.woocommerce #review_form .comment-form-rating p.stars,
.single-product #review_form .comment-form-rating p.stars {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 8px 0 12px !important;
    line-height: 1 !important;
}
.woocommerce #review_form .comment-form-rating p.stars span,
.single-product #review_form .comment-form-rating p.stars span {
    display: inline-flex !important;
    gap: 4px !important;
}
.woocommerce #review_form .comment-form-rating p.stars a,
.single-product #review_form .comment-form-rating p.stars a {
    position: relative !important;
    display: inline-block !important;
    width: 28px !important;
    height: 28px !important;
    overflow: hidden !important;
    text-indent: -9999px !important;
    white-space: nowrap !important;
    color: transparent !important;
    text-decoration: none !important;
    margin: 0 !important;
}
.woocommerce #review_form .comment-form-rating p.stars a::before,
.single-product #review_form .comment-form-rating p.stars a::before {
    content: "★" !important;
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-indent: 0 !important;
    color: rgba(242,161,74,.38) !important;
    font-size: 28px !important;
    line-height: 1 !important;
}
.woocommerce #review_form .comment-form-rating p.stars:hover a::before,
.woocommerce #review_form .comment-form-rating p.stars.selected a.active::before,
.woocommerce #review_form .comment-form-rating p.stars.selected a:not(.active)::before,
.single-product #review_form .comment-form-rating p.stars:hover a::before,
.single-product #review_form .comment-form-rating p.stars.selected a.active::before,
.single-product #review_form .comment-form-rating p.stars.selected a:not(.active)::before {
    color: var(--orange) !important;
}
.woocommerce #review_form .comment-form-rating p.stars a:hover ~ a::before,
.woocommerce #review_form .comment-form-rating p.stars.selected a.active ~ a::before,
.single-product #review_form .comment-form-rating p.stars a:hover ~ a::before,
.single-product #review_form .comment-form-rating p.stars.selected a.active ~ a::before {
    color: rgba(242,161,74,.38) !important;
}
@media (max-width: 700px) {
    .woocommerce #review_form_wrapper,
    .single-product #review_form_wrapper {
        padding: 24px 18px !important;
        border-radius: 22px !important;
    }
}
/* ======================================================
   THIRD PASS FIXES - order received / thank-you page
   ====================================================== */
.dl-checkout-page--thankyou .dl-checkout-shell {
    width: min(1120px, 92%) !important;
    max-width: 1120px !important;
    margin: 36px auto 0 !important;
}
.dl-thankyou {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 90px;
    font-family: 'Nunito', sans-serif;
    color: var(--text);
}
.dl-thankyou-card,
.dl-thankyou-overview,
.dl-thankyou-panel,
.dl-thankyou-gateway-note {
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.16);
    box-shadow: 0 18px 46px rgba(61,47,42,.08);
}
.dl-thankyou-card {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 28px 32px;
    border-radius: 30px;
    margin-bottom: 22px;
}
.dl-thankyou-card--hero {
    background: linear-gradient(135deg, #fffdf9 0%, #fff8ef 100%);
}
.dl-thankyou-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(123,149,92,.24);
}
.dl-thankyou--failed .dl-thankyou-icon {
    background: #d9534f;
    box-shadow: 0 12px 24px rgba(217,83,79,.22);
}
.dl-thankyou-kicker {
    margin: 0 0 6px !important;
    color: var(--green);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.dl-thankyou h2,
.dl-thankyou h3,
.dl-thankyou h4 {
    color: var(--text);
    font-weight: 900;
    line-height: 1.15;
}
.dl-thankyou h2 {
    margin: 0 0 8px !important;
    font-size: clamp(30px, 4vw, 42px);
}
.dl-thankyou h3 {
    margin: 0;
    padding: 22px 26px;
    font-size: 22px;
    background: linear-gradient(135deg, #f5eadb 0%, #ede0cc 100%);
    border-bottom: 1px solid rgba(61,47,42,.08);
}
.dl-thankyou h4 {
    margin: 0 0 10px !important;
    font-size: 17px;
}
.dl-thankyou p {
    margin: 0 !important;
    color: #6f625a;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 700;
}
.dl-thankyou-overview {
    display: grid;
    grid-template-columns: .9fr .9fr minmax(220px, 1.25fr) .95fr minmax(190px, 1.1fr) !important;
    gap: 0;
    overflow: hidden;
    border-radius: 26px;
    margin-bottom: 24px;
}
.dl-thankyou-overview > div {
    padding: 20px 22px;
    border-right: 1px solid rgba(61,47,42,.08);
    min-width: 0;
}
.dl-thankyou-overview > div:last-child {
    border-right: 0;
}
.dl-thankyou-overview span {
    display: block;
    margin-bottom: 6px;
    color: #7d6b62;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .45px;
}
.dl-thankyou-overview strong {
    display: block;
    color: var(--text);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    hyphens: none !important;
}
.dl-thankyou-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr);
    gap: 26px;
    align-items: start;
}
.dl-thankyou-panel {
    border-radius: 30px;
    overflow: hidden;
}
.dl-thankyou-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background: #fffdf9;
}
.dl-thankyou-table th,
.dl-thankyou-table td {
    padding: 17px 26px;
    border-bottom: 1px solid rgba(61,47,42,.08);
    vertical-align: middle;
    font-size: 15px;
}
.dl-thankyou-table thead th {
    background: #fff8ef;
    color: #7d6b62;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .45px;
}
.dl-thankyou-table th:first-child,
.dl-thankyou-table td:first-child {
    text-align: left;
}
.dl-thankyou-table th:last-child,
.dl-thankyou-table td:last-child {
    text-align: right;
}
.dl-thankyou-table tbody td:first-child {
    color: var(--text);
    font-weight: 900;
}
.dl-thankyou-table a {
    color: var(--text);
    text-decoration: none;
    font-weight: 900;
}
.dl-thankyou-table a:hover {
    color: var(--green);
}
.dl-thankyou-table tbody td:last-child,
.dl-thankyou-table tfoot td {
    color: var(--green);
    font-weight: 900;
}
.dl-thankyou-table tfoot th {
    color: #7d6b62;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.dl-thankyou-total-row th,
.dl-thankyou-total-row td {
    background: #f5eadb;
    color: var(--green) !important;
    font-size: 18px !important;
}
.dl-thankyou-qty {
    display: inline-block;
    margin-left: 6px;
    color: #7d6b62;
    font-weight: 900;
}
.dl-thankyou-panel--addresses {
    background: #fffdf9;
}
.dl-thankyou-addresses {
    display: grid;
    gap: 14px;
    padding: 22px 24px;
}
.dl-thankyou-address-card {
    padding: 18px;
    border: 1px solid rgba(123,149,92,.14);
    border-radius: 20px;
    background: #fff8ef;
}
.dl-thankyou-address-card address {
    margin: 0;
    color: #5f5149;
    font-style: normal;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 800;
    overflow-wrap: anywhere;
}
.dl-thankyou-note {
    padding: 0 24px 24px;
}
.dl-thankyou-gateway-note {
    padding: 18px 22px !important;
    border-radius: 24px;
    margin: 0 0 24px;
    color: #5f5149;
    font-weight: 800;
    line-height: 1.6;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: #fffdf9 !important;
    border-color: rgba(123,149,92,.18) !important;
}
.dl-thankyou-gateway-note p,
.dl-thankyou-gateway-note li {
    color: #5f5149 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    font-weight: 800 !important;
}
.dl-thankyou-gateway-note table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
}
.dl-thankyou-gateway-note th,
.dl-thankyou-gateway-note td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(61,47,42,.08);
}
.dl-thankyou-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}
.dl-thankyou-button,
.woocommerce .dl-thankyou-button.button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 54px !important;
    padding: 14px 30px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--orange) !important;
    color: #fff !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: 0 14px 28px rgba(242,161,74,.26) !important;
    transition: .25s ease !important;
}
.dl-thankyou-button:hover,
.woocommerce .dl-thankyou-button.button:hover {
    background: #e8913a !important;
    transform: translateY(-2px);
}
.dl-thankyou-button--secondary,
.woocommerce .dl-thankyou-button--secondary.button {
    background: transparent !important;
    color: var(--green) !important;
    border: 1.5px solid var(--green) !important;
    box-shadow: none !important;
}
.dl-thankyou-button--secondary:hover,
.woocommerce .dl-thankyou-button--secondary.button:hover {
    background: rgba(123,149,92,.08) !important;
    color: var(--green) !important;
}
/* Fallback styling in case any WooCommerce default thank-you markup is printed by a plugin. */
.dl-checkout-page--thankyou .woocommerce-order-overview,
.dl-checkout-page--thankyou ul.woocommerce-order-overview {
    list-style: none !important;
    margin: 0 0 24px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: #fffdf9 !important;
    border: 1px solid rgba(123,149,92,.16) !important;
    box-shadow: 0 18px 46px rgba(61,47,42,.08) !important;
}
.dl-checkout-page--thankyou .woocommerce-order-overview li {
    margin: 0 !important;
    padding: 18px 20px !important;
    border-right: 1px solid rgba(61,47,42,.08) !important;
    color: #7d6b62 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}
.dl-checkout-page--thankyou .woocommerce-order-overview li strong {
    display: block !important;
    margin-top: 6px !important;
    color: var(--text) !important;
    font-size: 16px !important;
    text-transform: none !important;
    overflow-wrap: anywhere !important;
}
.dl-checkout-page--thankyou .woocommerce-order-details,
.dl-checkout-page--thankyou .woocommerce-customer-details {
    background: #fffdf9 !important;
    border: 1px solid rgba(123,149,92,.16) !important;
    border-radius: 28px !important;
    box-shadow: 0 18px 46px rgba(61,47,42,.08) !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 24px 0 !important;
}
.dl-checkout-page--thankyou .woocommerce-order-details__title,
.dl-checkout-page--thankyou .woocommerce-column__title {
    margin: 0 !important;
    padding: 20px 24px !important;
    background: #f5eadb !important;
    color: var(--text) !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}
.dl-checkout-page--thankyou .woocommerce table.shop_table {
    margin: 0 !important;
}
.dl-checkout-page--thankyou address {
    border: 0 !important;
    padding: 20px 24px !important;
    margin: 0 !important;
    color: #5f5149 !important;
    font-style: normal !important;
    font-weight: 800 !important;
    line-height: 1.65 !important;
}
@media (max-width: 920px) {
    .dl-thankyou-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dl-thankyou-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .dl-checkout-page--thankyou .dl-checkout-shell {
        width: 94% !important;
        margin-top: 24px !important;
    }
    .dl-thankyou {
        margin-bottom: 70px;
    }
    .dl-thankyou-card {
        align-items: flex-start;
        padding: 24px 20px;
        border-radius: 24px;
    }
    .dl-thankyou-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        font-size: 23px;
    }
    .dl-thankyou-overview {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }
    .dl-thankyou-overview > div {
        border-right: 0;
        border-bottom: 1px solid rgba(61,47,42,.08);
        padding: 18px 20px;
    }
    .dl-thankyou-panel {
        border-radius: 24px;
    }
    .dl-thankyou h3 {
        padding: 18px 20px;
        font-size: 20px;
    }
    .dl-thankyou-table th,
    .dl-thankyou-table td {
        padding: 14px 16px;
        font-size: 14px;
    }
    .dl-thankyou-table thead th {
        font-size: 12px;
    }
    .dl-thankyou-addresses {
        padding: 18px;
    }
    .dl-thankyou-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .dl-thankyou-button,
    .woocommerce .dl-thankyou-button.button {
        width: 100%;
    }
}
/* =========================================================
   V4 CART + CARD PAYMENT POLISH
   ========================================================= */
body.woocommerce-cart .cart-page-wrapper {
    padding: 54px 0 110px !important;
    background: radial-gradient(circle at 12% 12%, rgba(242,161,74,.12) 0, rgba(242,161,74,0) 260px),
        radial-gradient(circle at 88% 18%, rgba(123,149,92,.11) 0, rgba(123,149,92,0) 300px),
        linear-gradient(180deg, #fffdf9 0%, #f8f1e7 55%, #f2e4d2 100%) !important;
}
body.woocommerce-cart .shop-title {
    margin: 0 0 34px !important;
    font-size: clamp(42px, 5vw, 62px) !important;
    line-height: .95 !important;
}
body.woocommerce-cart .shop-title::after {
    content: "";
    display: block;
    width: 86px;
    height: 5px;
    margin-top: 14px;
    border-radius: 999px;
    background: var(--orange);
}
body.woocommerce-cart .dl-cart-shell {
    width: min(1200px, 100%) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}
body.woocommerce-cart .dl-cart-shell > .woocommerce {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px) !important;
    gap: 32px !important;
    align-items: start !important;
}
body.woocommerce-cart .dl-cart-shell > .woocommerce > .woocommerce-notices-wrapper,
body.woocommerce-cart .dl-cart-shell > .woocommerce > .woocommerce-message,
body.woocommerce-cart .dl-cart-shell > .woocommerce > .woocommerce-error,
body.woocommerce-cart .dl-cart-shell > .woocommerce > .woocommerce-info {
    grid-column: 1 / -1 !important;
}
body.woocommerce-cart table.cart thead th {
    padding: 17px 18px !important;
    background: #f7efe3 !important;
    color: #7b665c !important;
    font-size: 11px !important;
    letter-spacing: .75px !important;
    text-transform: uppercase !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(61,47,42,.07) !important;
}
body.woocommerce-cart table.cart tbody tr.cart_item {
    background: #fffdf9 !important;
    transition: background .2s ease, transform .2s ease !important;
}
body.woocommerce-cart table.cart tbody tr.cart_item:hover {
    background: #fffaf2 !important;
}
body.woocommerce-cart table.cart tbody tr.cart_item td {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    border-bottom: 1px solid rgba(61,47,42,.07) !important;
}
body.woocommerce-cart table.cart .product-remove a,
body.woocommerce-cart table.cart a.remove {
    width: 32px !important;
    height: 32px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff6ef !important;
    color: #ef5b45 !important;
    font-size: 0 !important;
    line-height: 1 !important;
    box-shadow: inset 0 0 0 1px rgba(230,83,63,.10) !important;
}
body.woocommerce-cart table.cart .product-remove a::after,
body.woocommerce-cart table.cart a.remove::after {
    content: "×" !important;
    font-size: 22px !important;
    line-height: 1 !important;
    color: inherit !important;
}
body.woocommerce-cart table.cart .product-remove a:hover,
body.woocommerce-cart table.cart a.remove:hover {
    background: #ef5b45 !important;
    color: #fff !important;
    transform: scale(1.04) !important;
}
body.woocommerce-cart table.cart .product-name a {
    display: inline-block !important;
    color: #2f221f !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}
body.woocommerce-cart table.cart .product-name a:hover {
    color: var(--green) !important;
}
body.woocommerce-cart table.cart .quantity input.qty {
    width: 72px !important;
    height: 44px !important;
    margin: 0 auto !important;
    border-radius: 16px !important;
    border: 1px solid rgba(61,47,42,.14) !important;
    background: #fff !important;
    box-shadow: 0 5px 14px rgba(61,47,42,.04) !important;
    color: var(--text) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    border-color: rgba(61,47,42,.13) !important;
}
body.woocommerce-cart table.cart td.actions {
    padding: 0 !important;
    background: #fffdf9 !important;
    border-bottom: 0 !important;
    display: block !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    border-top: 1px solid rgba(61,47,42,.07) !important;
}
body.woocommerce-cart table.cart td.actions .coupon {
    display: grid !important;
    align-items: center !important;
    gap: 6px 14px !important;
    width: 100% !important;
    max-width: none !important;
    position: relative !important;
    grid-template-columns: minmax(170px, 1fr) minmax(165px, 210px) minmax(126px, auto) !important;
    padding: 20px 22px !important;
    border-radius: 0 0 30px 30px !important;
    border: 0 !important;
    background: radial-gradient(circle at 95% 10%, rgba(242,161,74,.10) 0, rgba(242,161,74,0) 190px),
        linear-gradient(135deg, rgba(255,250,242,.98) 0%, rgba(255,253,249,.98) 100%) !important;
    box-shadow: none !important;
    grid-template-areas: "title input button"
        "desc  input button" !important;
    min-height: 92px !important;
    margin: 0 !important;
}
body.woocommerce-cart table.cart td.actions .coupon::before {
    content: "Imate kupon?" !important;
    display: block !important;
    align-items: center;
    justify-content: center;
    min-width: 0 !important;
    height: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--text) !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    grid-column: 1 / -1 !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    grid-area: title !important;
}
body.woocommerce-cart table.cart td.actions .coupon input.input-text {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    height: 50px !important;
    border-radius: 17px !important;
    padding: 0 16px !important;
    background: #fff !important;
    width: 100% !important;
    border: 1px solid rgba(61,47,42,.12) !important;
    color: var(--text) !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 20px rgba(61,47,42,.045) !important;
    grid-area: input !important;
    margin: 0 !important;
    font-size: 14px !important;
}
body.woocommerce-cart table.cart td.actions .coupon button,
body.woocommerce-cart table.cart td.actions .coupon .button {
    flex: 0 0 auto !important;
    min-height: 50px !important;
    padding: 0 22px !important;
    border-radius: 17px !important;
    background: var(--green) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 12px 24px rgba(123,149,92,.20) !important;
    height: 50px !important;
    grid-area: button !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 126px !important;
    margin: 0 !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}
body.woocommerce-cart .cart-collaterals {
    grid-column: 2 !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}
body.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    position: sticky !important;
    top: 128px !important;
    background: #fffdf9 !important;
    border: 1px solid rgba(123,149,92,.17) !important;
    border-radius: 30px !important;
    box-shadow: 0 24px 62px rgba(61,47,42,.10) !important;
    overflow: hidden !important;
}
body.woocommerce-cart .cart_totals table.shop_table {
    margin: 0 !important;
    border: 0 !important;
}
body.woocommerce-cart .cart_totals table td {
    background: #fffefa !important;
    color: var(--text) !important;
    font-weight: 900 !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    text-align: right !important;
}
body.woocommerce-cart .cart_totals .wc-proceed-to-checkout {
    padding: 22px 24px 26px !important;
    background: #fffdf9 !important;
}
body.woocommerce-cart .cart_totals .checkout-button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    width: 100% !important;
    min-height: 58px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, var(--orange) 0%, #f6ad57 100%) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 16px 28px rgba(242,161,74,.27) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}
body.woocommerce-cart .cart_totals .checkout-button:hover,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 36px rgba(242,161,74,.34) !important;
    background: linear-gradient(135deg, #eb943d 0%, var(--orange) 100%) !important;
}
body.woocommerce-cart .cart_totals tr.shipping,
body.woocommerce-cart .cart_totals li.shipping {
    display: revert !important;
}
/* Empty cart state */
body.woocommerce-cart .dl-cart-shell--empty {
    max-width: 760px !important;
    margin: 22px auto 0 !important;
}
.dl-empty-cart,
body.woocommerce-cart .cart-empty-message,
body.woocommerce-cart .cart-empty,
body.woocommerce-cart .return-to-shop {
    background: radial-gradient(circle at 18% 20%, rgba(242,161,74,.13) 0, rgba(242,161,74,0) 250px),
        linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%) !important;
    border: 1px solid rgba(123,149,92,.18) !important;
    border-radius: 34px !important;
    box-shadow: 0 24px 70px rgba(61,47,42,.10) !important;
    padding: clamp(30px, 6vw, 56px) !important;
    text-align: center !important;
}
.dl-empty-cart__logo {
    width: 112px;
    height: 112px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(61,47,42,.08);
}
.dl-empty-cart__logo img {
    width: 84px;
    height: auto;
    display: block;
}
.dl-empty-cart__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 16px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(123,149,92,.12);
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.dl-empty-cart h2 {
    margin: 0 0 10px !important;
    color: var(--text) !important;
    font-size: clamp(28px, 4vw, 42px) !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    letter-spacing: -1px !important;
}
.dl-empty-cart p,
body.woocommerce-cart .cart-empty-message p,
body.woocommerce-cart .cart-empty {
    max-width: 480px !important;
    margin: 0 auto 24px !important;
    color: #6c5a51 !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
    font-weight: 800 !important;
}
.dl-empty-cart__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.dl-empty-cart__primary,
.woocommerce .dl-empty-cart__primary.button,
body.woocommerce-cart .cart-empty-message .button,
body.woocommerce-cart .return-to-shop .button {
    min-height: 54px !important;
    padding: 0 30px !important;
    border-radius: 999px !important;
    background: var(--orange) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 16px 30px rgba(242,161,74,.25) !important;
}
.dl-empty-cart__secondary,
.woocommerce .dl-empty-cart__secondary.button {
    min-height: 54px !important;
    padding: 0 28px !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: var(--green) !important;
    border: 1.5px solid var(--green) !important;
    box-shadow: none !important;
}
/* OTP/card payment order-pay endpoint */
.dl-checkout-page--pay .dl-checkout-shell {
    width: min(980px, 94%) !important;
    max-width: 980px !important;
    margin-top: 18px !important;
}
.dl-checkout-page--pay .woocommerce {
    display: block !important;
}
.dl-checkout-page--pay .woocommerce-order-overview,
.dl-checkout-page--pay ul.order_details,
body.woocommerce-order-pay .woocommerce-order-overview,
body.woocommerce-order-pay ul.order_details {
    list-style: none !important;
    margin: 0 0 22px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    border: 1px solid rgba(123,149,92,.18) !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    background: #fffdf9 !important;
    box-shadow: 0 22px 60px rgba(61,47,42,.09) !important;
}
.dl-checkout-page--pay .woocommerce-order-overview li,
.dl-checkout-page--pay ul.order_details li,
body.woocommerce-order-pay .woocommerce-order-overview li,
body.woocommerce-order-pay ul.order_details li {
    margin: 0 !important;
    padding: 18px 20px !important;
    border-right: 1px solid rgba(61,47,42,.08) !important;
    background: #fffdf9 !important;
    color: #7a675d !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .35px !important;
}
.dl-checkout-page--pay .woocommerce-order-overview li:last-child,
.dl-checkout-page--pay ul.order_details li:last-child,
body.woocommerce-order-pay .woocommerce-order-overview li:last-child,
body.woocommerce-order-pay ul.order_details li:last-child {
    border-right: 0 !important;
}
.dl-checkout-page--pay .woocommerce-order-overview li strong,
.dl-checkout-page--pay ul.order_details li strong,
body.woocommerce-order-pay .woocommerce-order-overview li strong,
body.woocommerce-order-pay ul.order_details li strong {
    display: block !important;
    margin-top: 6px !important;
    color: var(--text) !important;
    font-size: 15px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    overflow-wrap: anywhere !important;
}
.dl-checkout-page--pay form#order_review,
body.woocommerce-order-pay form#order_review {
    margin: 0 !important;
    padding: 28px !important;
    background: rgba(255,253,249,.98) !important;
    border: 1px solid rgba(123,149,92,.18) !important;
    border-radius: 30px !important;
    box-shadow: 0 24px 70px rgba(61,47,42,.10) !important;
    overflow: hidden !important;
}
.dl-checkout-page--pay form#order_review::before,
body.woocommerce-order-pay form#order_review::before {
    content: "Plaćanje karticom";
    display: block;
    margin: -28px -28px 22px;
    padding: 20px 28px;
    background: linear-gradient(135deg, #f5eadb 0%, #eadcc6 100%);
    color: var(--text);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
}
.dl-checkout-page--pay form#order_review #payment,
body.woocommerce-order-pay form#order_review #payment {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}
.dl-checkout-page--pay form#order_review label,
.dl-checkout-page--pay form#order_review p,
.dl-checkout-page--pay form#order_review .form-row,
body.woocommerce-order-pay form#order_review label,
body.woocommerce-order-pay form#order_review p,
body.woocommerce-order-pay form#order_review .form-row {
    color: #5f5149 !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.55 !important;
}
.dl-checkout-page--pay form#order_review label,
body.woocommerce-order-pay form#order_review label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin: 0 0 18px !important;
    padding: 16px 18px !important;
    border-radius: 20px !important;
    background: #fff7ec !important;
    border: 1px solid rgba(242,161,74,.20) !important;
}
.dl-checkout-page--pay form#order_review input[type="checkbox"],
body.woocommerce-order-pay form#order_review input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin-top: 3px !important;
    accent-color: var(--green) !important;
}
.dl-checkout-page--pay form#order_review button,
.dl-checkout-page--pay form#order_review input[type="submit"],
.dl-checkout-page--pay form#order_review .button,
body.woocommerce-order-pay form#order_review button,
body.woocommerce-order-pay form#order_review input[type="submit"],
body.woocommerce-order-pay form#order_review .button {
    min-width: 190px !important;
    min-height: 54px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 10px 12px 0 0 !important;
    padding: 0 28px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--orange) !important;
    color: #fff !important;
    box-shadow: 0 16px 30px rgba(242,161,74,.26) !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}
.dl-checkout-page--pay form#order_review button:hover,
.dl-checkout-page--pay form#order_review input[type="submit"]:hover,
.dl-checkout-page--pay form#order_review .button:hover,
body.woocommerce-order-pay form#order_review button:hover,
body.woocommerce-order-pay form#order_review input[type="submit"]:hover,
body.woocommerce-order-pay form#order_review .button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 36px rgba(242,161,74,.34) !important;
}
.dl-checkout-page--pay form#order_review a,
body.woocommerce-order-pay form#order_review a,
body.woocommerce-order-pay a.cancel {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 54px !important;
    margin-top: 10px !important;
    padding: 0 24px !important;
    border-radius: 999px !important;
    border: 1.5px solid var(--green) !important;
    background: transparent !important;
    color: var(--green) !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    float: none !important;
}
.dl-checkout-page #payment img,
.dl-checkout-page--pay form#order_review img,
body.woocommerce-order-pay form#order_review img {
    max-width: 170px !important;
    max-height: 58px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}
.dl-checkout-page #payment .payment_box,
.dl-checkout-page--pay #payment .payment_box,
body.woocommerce-order-pay #payment .payment_box {
    border-radius: 18px !important;
    background: #fff7ec !important;
    color: #6c5a51 !important;
    font-weight: 800 !important;
}
@media (max-width: 1120px) {
    body.woocommerce-cart .dl-cart-shell > .woocommerce {
        grid-template-columns: 1fr !important;
    }
    body.woocommerce-cart .woocommerce-cart-form,
    body.woocommerce-cart .cart-collaterals {
        grid-column: 1 !important;
    }
    body.woocommerce-cart .cart-collaterals .cart_totals {
        position: static !important;
        max-width: 520px !important;
        margin-left: auto !important;
    }
}
@media (max-width: 768px) {
    body.woocommerce-cart .cart-page-wrapper {
        padding: 36px 0 80px !important;
    }
    body.woocommerce-cart .dl-cart-shell > .woocommerce {
        gap: 22px !important;
    }
    body.woocommerce-cart .woocommerce-cart-form {
        border-radius: 26px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
    }
    body.woocommerce-cart table.cart,
    body.woocommerce-cart table.cart tbody,
    body.woocommerce-cart table.cart tr,
    body.woocommerce-cart table.cart td {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }
    body.woocommerce-cart table.cart tr.cart_item {
        position: relative !important;
        margin-bottom: 16px !important;
        padding: 18px !important;
        border-radius: 26px !important;
        border: 1px solid rgba(123,149,92,.16) !important;
        background: #fffdf9 !important;
        box-shadow: 0 14px 34px rgba(61,47,42,.07) !important;
    }
    body.woocommerce-cart table.cart tr.cart_item td {
        padding: 7px 0 !important;
        border: 0 !important;
    }
    body.woocommerce-cart table.cart .product-remove {
        position: absolute !important;
        top: 14px !important;
        right: 14px !important;
        width: auto !important;
        padding: 0 !important;
        text-align: right !important;
    }
    body.woocommerce-cart table.cart .product-thumbnail {
        width: 90px !important;
        padding: 0 0 12px !important;
    }
    body.woocommerce-cart table.cart .product-thumbnail img {
        width: 86px !important;
        height: 86px !important;
    }
    body.woocommerce-cart table.cart .product-name {
        padding-right: 44px !important;
    }
    body.woocommerce-cart table.cart .product-price,
    body.woocommerce-cart table.cart .product-quantity,
    body.woocommerce-cart table.cart .product-subtotal {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: right !important;
        padding: 10px 0 !important;
        border-top: 1px dashed rgba(61,47,42,.10) !important;
    }
    body.woocommerce-cart table.cart .product-price::before,
    body.woocommerce-cart table.cart .product-quantity::before,
    body.woocommerce-cart table.cart .product-subtotal::before {
        color: #7a675d !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: .3px !important;
    }
    body.woocommerce-cart table.cart .quantity input.qty {
        margin: 0 !important;
    }
    body.woocommerce-cart table.cart td.actions {
        margin-top: 6px !important;
        padding: 18px !important;
        border-radius: 24px !important;
        border: 1px solid rgba(123,149,92,.14) !important;
        box-shadow: 0 14px 34px rgba(61,47,42,.06) !important;
    }
    body.woocommerce-cart table.cart td.actions .coupon {
        max-width: none !important;
        align-items: stretch !important;
    }
    body.woocommerce-cart table.cart td.actions .coupon::before {
        display: none !important;
    }
    body.woocommerce-cart table.cart td.actions .coupon input.input-text,
    body.woocommerce-cart table.cart td.actions .coupon button {
        width: 100% !important;
        flex-basis: 100% !important;
    }
    body.woocommerce-cart .cart-collaterals .cart_totals {
        max-width: none !important;
        border-radius: 26px !important;
    }
    .dl-checkout-page--pay .woocommerce-order-overview,
    .dl-checkout-page--pay ul.order_details,
    body.woocommerce-order-pay .woocommerce-order-overview,
    body.woocommerce-order-pay ul.order_details {
        grid-template-columns: 1fr 1fr !important;
        border-radius: 24px !important;
    }
    .dl-checkout-page--pay .woocommerce-order-overview li,
    .dl-checkout-page--pay ul.order_details li,
    body.woocommerce-order-pay .woocommerce-order-overview li,
    body.woocommerce-order-pay ul.order_details li {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(61,47,42,.08) !important;
    }
    .dl-checkout-page--pay form#order_review,
    body.woocommerce-order-pay form#order_review {
        padding: 22px !important;
        border-radius: 26px !important;
    }
    .dl-checkout-page--pay form#order_review::before,
    body.woocommerce-order-pay form#order_review::before {
        margin: -22px -22px 20px !important;
        padding: 18px 22px !important;
    }
}
@media (max-width: 520px) {
    body.woocommerce-cart .shop-title {
        font-size: 44px !important;
    }
    .dl-empty-cart__actions,
    body.woocommerce-cart table.cart td.actions .coupon {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
    .dl-empty-cart__primary,
    .dl-empty-cart__secondary,
    .woocommerce .dl-empty-cart__primary.button,
    .woocommerce .dl-empty-cart__secondary.button {
        width: 100% !important;
    }
    .dl-checkout-page--pay .woocommerce-order-overview,
    .dl-checkout-page--pay ul.order_details,
    body.woocommerce-order-pay .woocommerce-order-overview,
    body.woocommerce-order-pay ul.order_details {
        grid-template-columns: 1fr !important;
    }
    .dl-checkout-page--pay form#order_review button,
    .dl-checkout-page--pay form#order_review input[type="submit"],
    .dl-checkout-page--pay form#order_review .button,
    .dl-checkout-page--pay form#order_review a,
    body.woocommerce-order-pay form#order_review button,
    body.woocommerce-order-pay form#order_review input[type="submit"],
    body.woocommerce-order-pay form#order_review .button,
    body.woocommerce-order-pay form#order_review a {
        width: 100% !important;
        margin-right: 0 !important;
    }
}
/* =========================================================
   V5 VARIABLE PRODUCT OPTIONS FIX
   ========================================================= */
/* Serbian/variable products: prevent the WooCommerce variations table from
   being squeezed into the old simple-product quantity/button grid. */
.single-product .dl-single-cart form.variations_form.cart,
.single-product .dl-single-cart form.cart.variations_form {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
}
.single-product .dl-single-cart form.variations_form.cart::before,
.single-product .dl-single-cart form.variations_form.cart::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}
.single-product .dl-single-cart table.variations {
    width: 100% !important;
    margin: 0 0 44px !important;
    padding: 0 !important;
    border: 0 !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    background: transparent !important;
    table-layout: fixed !important;
    display: block !important;
}
.single-product .dl-single-cart table.variations tbody,
.single-product .dl-single-cart table.variations tr {
    width: 100% !important;
}
.single-product .dl-single-cart table.variations th,
.single-product .dl-single-cart table.variations td,
.single-product .dl-single-cart table.variations .label,
.single-product .dl-single-cart table.variations .value {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    vertical-align: middle !important;
}
.single-product .dl-single-cart table.variations th.label {
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    height: 50px !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    min-height: 50px !important;
    vertical-align: top !important;
    max-height: 50px !important;
}
.single-product .dl-single-cart table.variations th.label label,
.single-product .dl-single-cart table.variations label {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 44px !important;
    margin: 0 !important;
    color: #3d2f2a !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
}
.single-product .dl-single-cart table.variations td.value {
    width: 100% !important;
    min-width: 0 !important;
    display: block !important;
    flex-direction: column !important;
    align-items: stretch !important;
    flex: 1 1 auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    justify-content: center !important;
    margin: 0 !important;
    vertical-align: top !important;
    max-width: none !important;
    position: relative !important;
}
.single-product .dl-single-cart table.variations select {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 50px !important;
    margin: 0 !important;
    padding: 0 44px 0 16px !important;
    border: 1px solid rgba(61,47,42,.16) !important;
    border-radius: 16px !important;
    background: #fffdf9 !important;
    color: var(--text) !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 50px !important;
    box-shadow: 0 6px 18px rgba(61,47,42,.04) !important;
    outline: none !important;
    box-sizing: border-box !important;
    text-align: left !important;
    background-color: #fff !important;
}
.single-product .dl-single-cart table.variations select:focus {
    border-color: var(--green) !important;
    box-shadow: 0 0 0 4px rgba(123,149,92,.12) !important;
}
.single-product .dl-single-cart table.variations .reset_variations {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 26px !important;
    margin: 0 !important;
    padding: 4px 12px !important;
    border-radius: 999px !important;
    background: rgba(123,149,92,.10) !important;
    color: #6f8851 !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    width: fit-content !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    z-index: 2 !important;
}
.single-product .dl-single-cart .single_variation_wrap {
    display: block !important;
    width: 100% !important;
    clear: both !important;
    margin-top: 8px !important;
}
.single-product .dl-single-cart .woocommerce-variation.single_variation {
    display: block !important;
    width: 100% !important;
    margin: 4px 0 14px !important;
}
.single-product .dl-single-cart .woocommerce-variation-price {
    margin: 0 0 10px !important;
}
.single-product .dl-single-cart .woocommerce-variation-price .price {
    display: inline-flex !important;
    align-items: center !important;
    padding: 9px 13px !important;
    border-radius: 14px !important;
    background: #f5ecdf !important;
    color: var(--green) !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}
.single-product .dl-single-cart .woocommerce-variation-description,
.single-product .dl-single-cart .woocommerce-variation-availability {
    margin: 8px 0 !important;
    color: #5f5149 !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.55 !important;
}
.single-product .dl-single-cart .woocommerce-variation-add-to-cart,
.single-product .dl-single-cart .woocommerce-variation-add-to-cart-enabled,
.single-product .dl-single-cart .woocommerce-variation-add-to-cart-disabled {
    display: grid !important;
    grid-template-columns: 78px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
    width: 100% !important;
    clear: both !important;
}
.single-product .dl-single-cart form.variations_form .quantity {
    width: 74px !important;
    margin: 0 !important;
    float: none !important;
}
.single-product .dl-single-cart form.variations_form .quantity input.qty {
    width: 74px !important;
    max-width: 78px !important;
    height: 52px !important;
    margin: 0 !important;
}
.single-product .dl-single-cart form.variations_form .single_add_to_cart_button {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    float: none !important;
}
.single-product .dl-single-cart form.variations_form .single_add_to_cart_button.disabled,
.single-product .dl-single-cart form.variations_form .single_add_to_cart_button.wc-variation-selection-needed {
    opacity: .58 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}
/* Product cards: variable product option button should use the same design and fit Serbian text. */
.dl-product-card .button.product_type_variable,
.dl-product-card .button.product_type_grouped,
.dl-product-card .button.product_type_external {
    white-space: normal !important;
    text-align: center !important;
}
@media (max-width: 700px) {
    .single-product .dl-single-cart {
        padding: 16px !important;
        border-radius: 22px !important;
        overflow: visible !important;
    }
    .single-product .dl-single-cart table.variations,
    .single-product .dl-single-cart table.variations tbody,
    .single-product .dl-single-cart table.variations tr,
    .single-product .dl-single-cart table.variations th,
    .single-product .dl-single-cart table.variations td {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }
    .single-product .dl-single-cart table.variations tr {
        margin: 0 0 12px !important;
    }
    .single-product .dl-single-cart table.variations th.label {
        padding: 0 0 6px !important;
    }
    .single-product .dl-single-cart table.variations th.label label,
    .single-product .dl-single-cart table.variations label {
        min-height: 0 !important;
        font-size: 13px !important;
    }
    .single-product .dl-single-cart table.variations select {
        height: 50px !important;
        line-height: 50px !important;
    }
    .single-product .dl-single-cart .woocommerce-variation-add-to-cart,
    .single-product .dl-single-cart .woocommerce-variation-add-to-cart-enabled,
    .single-product .dl-single-cart .woocommerce-variation-add-to-cart-disabled {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .single-product .dl-single-cart form.variations_form .quantity,
    .single-product .dl-single-cart form.variations_form .quantity input.qty {
        width: 100% !important;
        max-width: 100% !important;
    }
}
/* =========================================================
   V7 CART VISUAL REFINEMENT
   Cleaner coupon area and softer totals card while keeping
   the Drvena Lija warm wood/green/orange theme.
   ========================================================= */
body.woocommerce-cart table.cart .product-price,
body.woocommerce-cart table.cart .product-subtotal {
    font-size: 15px !important;
}
body.woocommerce-cart table.cart td.actions .coupon::after {
    content: "Unesite kod kupona i popust će se obračunati u korpi." !important;
    grid-column: 1 / -1 !important;
    display: block !important;
    margin: 0 !important;
    color: #806b5f !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    grid-area: desc !important;
}
body.woocommerce-cart table.cart td.actions .coupon label {
    display: none !important;
}
body.woocommerce-cart table.cart td.actions .coupon button:hover,
body.woocommerce-cart table.cart td.actions .coupon .button:hover {
    background: #6e874f !important;
    transform: translateY(-1px) !important;
    text-decoration: none !important;
}
body.woocommerce-cart table.cart td.actions > button.button,
body.woocommerce-cart table.cart td.actions > input.button {
    min-height: 48px !important;
    padding: 0 20px !important;
    border-radius: 16px !important;
    background: transparent !important;
    color: var(--green) !important;
    border: 1.5px solid rgba(123,149,92,.55) !important;
    box-shadow: none !important;
    display: none !important;
}
body.woocommerce-cart .cart_totals h2::after {
    content: "" !important;
    display: block !important;
    width: 58px !important;
    height: 4px !important;
    margin-top: 12px !important;
    border-radius: 999px !important;
    background: var(--orange) !important;
}
body.woocommerce-cart .cart_totals table.shop_table,
body.woocommerce-cart .cart_totals table.shop_table tbody {
    display: block !important;
    width: 100% !important;
    padding: 4px 24px 0 !important;
    margin: 0 !important;
    background: #fffdf9 !important;
    border: 0 !important;
    border-collapse: separate !important;
}
body.woocommerce-cart .cart_totals table tr {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(110px, auto) !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(61,47,42,.08) !important;
}
body.woocommerce-cart .cart_totals table td .amount,
body.woocommerce-cart .cart_totals table td bdi {
    color: var(--text) !important;
    font-weight: 900 !important;
}
body.woocommerce-cart .cart_totals .shipping ul,
body.woocommerce-cart .cart_totals ul#shipping_method,
body.woocommerce-cart .cart_totals .woocommerce-shipping-methods {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
body.woocommerce-cart .cart_totals .shipping li,
body.woocommerce-cart .cart_totals ul#shipping_method li,
body.woocommerce-cart .cart_totals .woocommerce-shipping-methods li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
body.woocommerce-cart .cart_totals .shipping li::marker,
body.woocommerce-cart .cart_totals ul#shipping_method li::marker,
body.woocommerce-cart .cart_totals .woocommerce-shipping-methods li::marker {
    content: "" !important;
}
body.woocommerce-cart .cart_totals .shipping input[type="radio"] {
    width: 13px !important;
    height: 13px !important;
    margin: 0 6px 0 0 !important;
    accent-color: var(--green) !important;
}
body.woocommerce-cart .cart_totals .shipping label {
    color: var(--text) !important;
    font-weight: 900 !important;
}
body.woocommerce-cart .cart_totals .woocommerce-shipping-destination,
body.woocommerce-cart .cart_totals .woocommerce-shipping-calculator {
    margin-top: 8px !important;
    color: #8a766b !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}
body.woocommerce-cart .cart_totals .order-total {
    grid-template-columns: minmax(0, 1fr) auto !important;
    margin: 10px -10px 0 !important;
    padding: 18px 18px !important;
    border: 1px solid rgba(123,149,92,.18) !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg, rgba(123,149,92,.13) 0%, rgba(242,161,74,.13) 100%) !important;
}
body.woocommerce-cart .cart_totals .order-total td .amount,
body.woocommerce-cart .cart_totals .order-total td bdi {
    color: var(--green) !important;
    font-size: 18px !important;
}
@media (max-width: 1120px) {
    body.woocommerce-cart .cart-collaterals .cart_totals {
        max-width: 560px !important;
    }
}
@media (max-width: 768px) {
    body.woocommerce-cart table.cart td.actions {
        display: block !important;
        padding: 0 !important;
        background: transparent !important;
    }
    body.woocommerce-cart table.cart td.actions .coupon {
        width: 100% !important;
        max-width: none !important;
        grid-template-columns: 1fr !important;
        padding: 18px !important;
        border-radius: 24px !important;
    }
    body.woocommerce-cart table.cart td.actions .coupon button,
    body.woocommerce-cart table.cart td.actions .coupon .button,
    body.woocommerce-cart table.cart td.actions > button.button,
    body.woocommerce-cart table.cart td.actions > input.button {
        width: 100% !important;
    }
    body.woocommerce-cart .cart_totals table.shop_table,
    body.woocommerce-cart .cart_totals table.shop_table tbody {
        padding: 4px 18px 0 !important;
    }
    body.woocommerce-cart .cart_totals table tr {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        text-align: left !important;
    }
    body.woocommerce-cart .cart_totals table td {
        text-align: left !important;
    }
    body.woocommerce-cart .cart_totals .order-total {
        margin-left: -6px !important;
        margin-right: -6px !important;
    }
}
/* =========================================================
   V9 CART POLISH
   Fix empty-cart button typography and make the coupon area
   feel integrated with the cart card.
   ========================================================= */
body.woocommerce-cart .dl-empty-cart__actions a,
body.woocommerce-cart .dl-empty-cart__actions a.button,
body.woocommerce-cart .dl-empty-cart__primary,
body.woocommerce-cart .dl-empty-cart__secondary,
body.woocommerce-cart .woocommerce .dl-empty-cart__primary.button,
body.woocommerce-cart .woocommerce .dl-empty-cart__secondary.button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    text-decoration: none !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 900 !important;
}
body.woocommerce-cart .dl-empty-cart__actions a:hover,
body.woocommerce-cart .dl-empty-cart__actions a:focus,
body.woocommerce-cart .dl-empty-cart__actions a:visited {
    text-decoration: none !important;
}
body.woocommerce-cart .dl-empty-cart__secondary,
body.woocommerce-cart .woocommerce .dl-empty-cart__secondary.button {
    background: rgba(255,253,249,.74) !important;
}
body.woocommerce-cart table.cart td.actions .coupon input.input-text:focus {
    outline: none !important;
    border-color: rgba(123,149,92,.48) !important;
    box-shadow: 0 0 0 4px rgba(123,149,92,.10) !important;
}
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
    border-width: 1px !important;
    border-color: rgba(123,149,92,.22) !important;
    border-radius: 22px !important;
    background: rgba(255,253,249,.96) !important;
    box-shadow: 0 14px 36px rgba(61,47,42,.06) !important;
}
body.woocommerce-cart .woocommerce-message a.button,
body.woocommerce-cart .woocommerce-info a.button,
body.woocommerce-cart .woocommerce-error a.button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    line-height: 1 !important;
}
@media (max-width: 920px) {
    body.woocommerce-cart table.cart td.actions .coupon {
        grid-template-columns: 1fr auto !important;
        grid-template-areas: "title title"
            "desc  desc"
            "input button" !important;
        border-radius: 0 0 26px 26px !important;
    }
}
@media (max-width: 640px) {
    body.woocommerce-cart table.cart td.actions .coupon {
        grid-template-columns: 1fr !important;
        grid-template-areas: "title"
            "desc"
            "input"
            "button" !important;
        gap: 10px !important;
        padding: 18px !important;
        border-radius: 24px !important;
    }
    body.woocommerce-cart table.cart td.actions .coupon button,
    body.woocommerce-cart table.cart td.actions .coupon .button,
    body.woocommerce-cart table.cart td.actions .coupon input.input-text {
        width: 100% !important;
    }
    body.woocommerce-cart .dl-empty-cart__actions a,
    body.woocommerce-cart .dl-empty-cart__actions a.button {
        width: 100% !important;
    }
}
/* =========================================================
   V10 polish - Serbian notices, thank-you alignment, variables
   ========================================================= */
body.woocommerce-cart .woocommerce-message,
body.woocommerce-checkout .woocommerce-message,
.single-product .woocommerce-message {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding: 18px 22px !important;
    border: 1px solid rgba(123,149,92,.22) !important;
    border-radius: 24px !important;
    background: #fffdf9 !important;
    color: var(--text) !important;
    box-shadow: 0 16px 36px rgba(61,47,42,.08) !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 900 !important;
    line-height: 1.45 !important;
}
body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-checkout .woocommerce-message::before,
.single-product .woocommerce-message::before {
    content: "✓" !important;
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: var(--green) !important;
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}
body.woocommerce-cart .woocommerce-message .dl-cart-notice-text,
body.woocommerce-checkout .woocommerce-message .dl-cart-notice-text,
.single-product .woocommerce-message .dl-cart-notice-text {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}
body.woocommerce-cart .woocommerce-message a.button,
body.woocommerce-cart .woocommerce-message a.wc-forward,
body.woocommerce-checkout .woocommerce-message a.button,
body.woocommerce-checkout .woocommerce-message a.wc-forward,
.single-product .woocommerce-message a.button,
.single-product .woocommerce-message a.wc-forward {
    order: 3 !important;
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    padding: 0 22px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--green) !important;
    color: #fff !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 10px 22px rgba(123,149,92,.22) !important;
}
body.woocommerce-cart .woocommerce-message a.button:hover,
body.woocommerce-cart .woocommerce-message a.wc-forward:hover,
body.woocommerce-checkout .woocommerce-message a.button:hover,
body.woocommerce-checkout .woocommerce-message a.wc-forward:hover,
.single-product .woocommerce-message a.button:hover,
.single-product .woocommerce-message a.wc-forward:hover {
    background: #6b8750 !important;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}
.dl-thankyou-gateway-note::before {
    content: "i";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(123,149,92,.12);
    color: var(--green);
    font-weight: 900;
    font-family: 'Nunito', sans-serif;
}
.dl-thankyou-gateway-note > * {
    margin: 0 !important;
}
.single-product .dl-single-cart table.variations tr {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: start !important;
    margin: 0 0 12px !important;
    flex-direction: row !important;
    width: 100% !important;
    padding: 0 !important;
    column-gap: 18px !important;
}
.single-product .dl-single-cart table.variations th.label,
.single-product .dl-single-cart table.variations td.value {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    vertical-align: middle !important;
}
@media (max-width: 920px) {
    .dl-thankyou-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
@media (max-width: 700px) {
    body.woocommerce-cart .woocommerce-message,
    body.woocommerce-checkout .woocommerce-message,
    .single-product .woocommerce-message {
        align-items: flex-start !important;
        flex-direction: column !important;
        padding: 18px !important;
    }
    body.woocommerce-cart .woocommerce-message a.button,
    body.woocommerce-cart .woocommerce-message a.wc-forward,
    body.woocommerce-checkout .woocommerce-message a.button,
    body.woocommerce-checkout .woocommerce-message a.wc-forward,
    .single-product .woocommerce-message a.button,
    .single-product .woocommerce-message a.wc-forward {
        width: 100% !important;
    }
    .single-product .dl-single-cart table.variations tr {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }
}
/* ======================================================
   V11 checkout coupon, privacy/footer polish and loader
   ====================================================== */
/* Checkout coupon area */
body.woocommerce-checkout .dl-checkout-shell .woocommerce-form-coupon-toggle {
    width: 100% !important;
    margin: 0 0 16px !important;
}
body.woocommerce-checkout .dl-checkout-shell .woocommerce-form-coupon-toggle .woocommerce-info,
.dl-checkout-page .woocommerce-form-coupon-toggle .woocommerce-info {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 54px !important;
    margin: 0 !important;
    padding: 14px 22px !important;
    border: 1px solid rgba(123,149,92,.13) !important;
    border-left: 0 !important;
    border-radius: 18px !important;
    background: #fffdf9 !important;
    color: var(--text) !important;
    box-shadow: 0 12px 32px rgba(61,47,42,.055) !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
}
body.woocommerce-checkout .dl-checkout-shell .woocommerce-form-coupon-toggle .woocommerce-info::before,
.dl-checkout-page .woocommerce-form-coupon-toggle .woocommerce-info::before {
    content: "" !important;
    position: static !important;
    display: inline-flex !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 999px !important;
    background: rgba(242,161,74,.18) !important;
    box-shadow: inset 0 0 0 1px rgba(242,161,74,.22) !important;
}
body.woocommerce-checkout .dl-checkout-shell .woocommerce-form-coupon-toggle a,
.dl-checkout-page .woocommerce-form-coupon-toggle a {
    color: var(--green) !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    border-bottom: 2px solid rgba(123,149,92,.22) !important;
    transition: color .2s ease, border-color .2s ease !important;
}
body.woocommerce-checkout .dl-checkout-shell .woocommerce-form-coupon-toggle a:hover,
.dl-checkout-page .woocommerce-form-coupon-toggle a:hover {
    color: #6f884f !important;
    border-color: rgba(123,149,92,.55) !important;
}
body.woocommerce-checkout .dl-checkout-shell form.checkout_coupon,
.dl-checkout-page form.checkout_coupon,
body.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: end !important;
    gap: 12px 14px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 28px !important;
    padding: 18px !important;
    border: 1px solid rgba(242,161,74,.28) !important;
    border-radius: 22px !important;
    background: radial-gradient(circle at 96% 0%, rgba(242,161,74,.13) 0, rgba(242,161,74,0) 185px),
        linear-gradient(180deg, #fffdf9 0%, #fff8ee 100%) !important;
    box-shadow: 0 18px 42px rgba(61,47,42,.06) !important;
    overflow: hidden !important;
}
body.woocommerce-checkout form.checkout_coupon p:not(.form-row) {
    grid-column: 1 / -1 !important;
    margin: 0 0 2px !important;
    color: #7b665c !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 800 !important;
}
body.woocommerce-checkout form.checkout_coupon .form-row,
body.woocommerce-checkout form.checkout_coupon .form-row-first,
body.woocommerce-checkout form.checkout_coupon .form-row-last {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.woocommerce-checkout form.checkout_coupon .form-row-first {
    grid-column: 1 !important;
}
body.woocommerce-checkout form.checkout_coupon .form-row-last {
    grid-column: 2 !important;
}
body.woocommerce-checkout form.checkout_coupon input.input-text,
body.woocommerce-checkout form.checkout_coupon #coupon_code {
    width: 100% !important;
    height: 54px !important;
    min-height: 54px !important;
    padding: 0 18px !important;
    border: 1.5px solid rgba(123,149,92,.20) !important;
    border-radius: 16px !important;
    background: #fff !important;
    color: var(--text) !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 22px rgba(61,47,42,.045) !important;
    outline: none !important;
}
body.woocommerce-checkout form.checkout_coupon input.input-text:focus,
body.woocommerce-checkout form.checkout_coupon #coupon_code:focus {
    border-color: rgba(123,149,92,.62) !important;
    box-shadow: 0 0 0 4px rgba(123,149,92,.12), 0 10px 22px rgba(61,47,42,.05) !important;
}
body.woocommerce-checkout form.checkout_coupon button.button,
body.woocommerce-checkout form.checkout_coupon .button {
    height: 54px !important;
    min-height: 54px !important;
    min-width: 150px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 24px !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: var(--green) !important;
    color: #fff !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    text-align: center !important;
    text-decoration: none !important;
    box-shadow: 0 14px 26px rgba(123,149,92,.22) !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}
body.woocommerce-checkout form.checkout_coupon button.button:hover,
body.woocommerce-checkout form.checkout_coupon .button:hover {
    background: #6f884f !important;
    transform: translateY(-1px) !important;
}
/* Checkout privacy text: keep it Serbian and aligned with the payment box */
.dl-checkout-page .woocommerce-privacy-policy-text,
body.woocommerce-checkout .woocommerce-privacy-policy-text {
    max-width: 310px !important;
    margin: 16px auto 20px !important;
    color: #8d7c73 !important;
    text-align: center !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
    font-weight: 700 !important;
}
.dl-checkout-page .woocommerce-privacy-policy-text p,
body.woocommerce-checkout .woocommerce-privacy-policy-text p {
    margin: 0 !important;
}
.dl-checkout-page .woocommerce-privacy-policy-text a,
body.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: var(--green) !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    border-bottom: 1.5px solid rgba(123,149,92,.32) !important;
}
/* Footer: balanced three-column desktop layout */
footer .footer-inner {
    display: grid !important;
    grid-template-columns: minmax(260px, 1fr) minmax(360px, auto) minmax(220px, 1fr) !important;
    align-items: center !important;
    gap: 36px !important;
}
footer .footer-brand {
    justify-self: start !important;
    padding: 0 !important;
    gap: 7px !important;
}
footer .footer-brand-top {
    gap: 14px !important;
}
footer .footer-copy {
    padding: 0 !important;
    display: inline-flex !important;
    justify-content: flex-start !important;
}
footer .footer-links {
    justify-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px 18px !important;
    text-align: center !important;
}
footer .footer-links a {
    position: relative !important;
    font-size: 14px !important;
    color: #6f5d53 !important;
    white-space: nowrap !important;
}
footer .footer-links a + a::before {
    content: "" !important;
    position: absolute !important;
    left: -10px !important;
    top: 50% !important;
    width: 4px !important;
    height: 4px !important;
    border-radius: 999px !important;
    background: rgba(123,149,92,.45) !important;
    transform: translateY(-50%) !important;
}
footer .footer-right {
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 18px !important;
}
footer .footer-social {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}
footer .footer-social a {
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: #fffdf9 !important;
    border: 1px solid rgba(123,149,92,.20) !important;
    box-shadow: 0 8px 18px rgba(61,47,42,.06) !important;
}
@media (max-width: 1050px) {
    footer .footer-inner {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: center !important;
    }
    footer .footer-brand,
    footer .footer-links,
    footer .footer-right,
    footer .footer-social {
        justify-self: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
    footer .footer-brand {
        justify-items: center !important;
    }
    footer .footer-brand-top {
        justify-content: center !important;
    }
}
@media (max-width: 640px) {
    body.woocommerce-checkout form.checkout_coupon,
    .dl-checkout-page form.checkout_coupon {
        grid-template-columns: 1fr !important;
        padding: 16px !important;
        border-radius: 20px !important;
    }
    body.woocommerce-checkout form.checkout_coupon .form-row-first,
    body.woocommerce-checkout form.checkout_coupon .form-row-last {
        grid-column: 1 !important;
    }
    body.woocommerce-checkout form.checkout_coupon button.button,
    body.woocommerce-checkout form.checkout_coupon .button {
        width: 100% !important;
    }
    body.woocommerce-checkout .dl-checkout-shell .woocommerce-form-coupon-toggle .woocommerce-info,
    .dl-checkout-page .woocommerce-form-coupon-toggle .woocommerce-info {
        align-items: flex-start !important;
        padding: 14px 16px !important;
    }
    footer .footer-links {
        flex-direction: column !important;
        gap: 12px !important;
    }
    footer .footer-links a + a::before {
        display: none !important;
    }
}
/* Centered site loading animation using assets/1.png - assets/6.png */
.dl-site-loader {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(255, 251, 244, .72) !important;
    backdrop-filter: blur(3px) !important;
    -webkit-backdrop-filter: blur(3px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity .22s ease, visibility .22s ease !important;
}
.dl-site-loader.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
.dl-site-loader__inner {
    width: 184px !important;
    height: 184px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    background: rgba(255,253,249,.88) !important;
    border: 1px solid rgba(242,161,74,.16) !important;
    box-shadow: 0 24px 60px rgba(61,47,42,.14) !important;
    overflow: hidden !important;
}
.dl-site-loader__image {
    width: 158px !important;
    height: 158px !important;
    max-width: 158px !important;
    max-height: 158px !important;
    object-fit: contain !important;
    display: block !important;
    user-select: none !important;
    pointer-events: none !important;
}
@media (max-width: 640px) {
    .dl-site-loader__inner {
        width: 150px !important;
        height: 150px !important;
    }
    .dl-site-loader__image {
        width: 128px !important;
        height: 128px !important;
        max-width: 128px !important;
        max-height: 128px !important;
    }
}
/* =============================================================
   SINGLE PRODUCT — ALL FIXES
   Add this at the very bottom of style.css.
   Remove ALL previous fix blocks before pasting.
   ============================================================= */
/* ─────────────────────────────────────────────────────────────
   VARIATION TABLE — labels inline with dropdowns
   Fully escapes browser table-layout by converting every
   ancestor to display:block, then each row to display:flex.
   ───────────────────────────────────────────────────────────── */
.single-product .dl-single-cart table.variations,
.single-product .dl-single-cart table.variations tbody {
    display: block !important;
    width: 100% !important;
    border: 0 !important;
    border-collapse: unset !important;
    border-spacing: 0 !important;
    background: transparent !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
}
/* Label cell */
.single-product .dl-single-cart table.variations th.label label {
    display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    align-items: center !important;
    min-height: 50px !important;
    height: 50px !important;
}
/* Value cell */
/* Select dropdown */
.single-product .dl-single-cart table.variations td.value select {
    display: block !important;
    width: 100% !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 0 40px 0 14px !important;
    border: 1px solid rgba(61,47,42,.14) !important;
    border-radius: 14px !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f2a14a' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: var(--text) !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 14px rgba(61,47,42,.05) !important;
    outline: none !important;
    cursor: pointer !important;
    transition: border-color .2s, box-shadow .2s !important;
    max-width: 100% !important;
    min-height: 38px !important;
    line-height: 38px !important;
}
.single-product .dl-single-cart table.variations td.value select:focus {
    border-color: var(--green) !important;
    box-shadow: 0 0 0 4px rgba(123,149,92,.12) !important;
}
/* Reset link */
@media (max-width: 700px) {
    .single-product .dl-single-cart table.variations tr {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
        margin-bottom: 14px !important;
    }
    .single-product .dl-single-cart table.variations th.label {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .single-product .dl-single-cart table.variations td.value {
        width: 100% !important;
    }
}
/* ─────────────────────────────────────────────────────────────
   TAB LABELS — Serbian, always visible
   ───────────────────────────────────────────────────────────── */
/* Hide original WooCommerce text (English) */
/* Serbian label injected via ::after */
.single-product .dl-tabs ul.tabs li.description_tab a::after {
    content: "Opis" !important;
}
.single-product .dl-tabs ul.tabs li.additional_information_tab a::after {
    content: "Dodatne informacije" !important;
}
.single-product .dl-tabs ul.tabs li.reviews_tab a::after {
    content: "Recenzije" !important;
}
/* Shared ::after styles */
.single-product .dl-tabs ul.tabs li a::after {
    font-size: 13px !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    color: var(--text) !important;
}
/* Active tab — white text on green pill */
.single-product .dl-tabs ul.tabs li.active a::after {
    color: #fff !important;
}
/* ─────────────────────────────────────────────────────────────
   DODATNE INFORMACIJE PANEL
   ───────────────────────────────────────────────────────────── */
.single-product .dl-tabs .panel#tab-additional_information {
    padding: 0 !important;
    overflow: hidden !important;
    background: #fffdf9 !important;
}
/* Gradient heading bar replaces WC h2 */
.single-product .dl-tabs .panel#tab-additional_information::before {
    content: "Dodatne informacije" !important;
    display: block !important;
    padding: 20px 32px !important;
    background: linear-gradient(135deg, #f5eadb 0%, #ede0cc 100%) !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    border-bottom: 1px solid rgba(61,47,42,.08) !important;
}
.single-product .dl-tabs #tab-additional_information h2 {
    display: none !important;
}
.single-product .dl-tabs #tab-additional_information
    table.woocommerce-product-attributes {
    width: 100% !important;
    border-collapse: collapse !important;
    border: 0 !important;
    margin: 0 !important;
}
.single-product .dl-tabs #tab-additional_information
    .woocommerce-product-attributes-item {
    border-bottom: 1px solid rgba(61,47,42,.07) !important;
}
.single-product .dl-tabs #tab-additional_information
    .woocommerce-product-attributes-item:last-child {
    border-bottom: 0 !important;
}
/* Label <th>: hide ALL text content, show Serbian via ::before */
.single-product .dl-tabs #tab-additional_information
    .woocommerce-product-attributes-item__label {
    width: 190px !important;
    padding: 18px 24px 18px 32px !important;
    background: rgba(245,234,219,.45) !important;
    border-right: 1px solid rgba(61,47,42,.07) !important;
    border-bottom: 0 !important;
    vertical-align: middle !important;
    font-size: 13px !important;
    color: #7b665c !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
    text-transform: uppercase !important;
    letter-spacing: .5px !important;
    white-space: normal !important;
}
/* Default ::before — empty (no element name leak) */
.single-product .dl-tabs #tab-additional_information
    .woocommerce-product-attributes-item__label::before {
    content: none !important;
    display: none !important;
    font-size: 12px !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 900 !important;
    color: #7b665c !important;
    text-transform: uppercase !important;
    letter-spacing: .5px !important;
}
/* Serbian overrides for built-in WC attributes */
.single-product .dl-tabs #tab-additional_information
    .woocommerce-product-attributes-item--weight
    .woocommerce-product-attributes-item__label::before {
    content: "Težina" !important;
}
.single-product .dl-tabs #tab-additional_information
    .woocommerce-product-attributes-item--dimensions
    .woocommerce-product-attributes-item__label::before {
    content: "Dimenzije" !important;
}
/* Value <td> */
.single-product .dl-tabs #tab-additional_information
    .woocommerce-product-attributes-item__value {
    padding: 18px 32px !important;
    border-bottom: 0 !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: var(--text) !important;
    vertical-align: middle !important;
    background: transparent !important;
}
@media (max-width: 600px) {
    .single-product .dl-tabs .panel#tab-additional_information::before {
        padding: 16px 20px !important;
        font-size: 17px !important;
    }
    .single-product .dl-tabs #tab-additional_information
        .woocommerce-product-attributes-item {
        display: flex !important;
        flex-direction: column !important;
    }
    .single-product .dl-tabs #tab-additional_information
        .woocommerce-product-attributes-item__label,
    .single-product .dl-tabs #tab-additional_information
        .woocommerce-product-attributes-item__value {
        width: 100% !important;
        padding: 12px 20px !important;
        border-right: 0 !important;
    }
    .single-product .dl-tabs #tab-additional_information
        .woocommerce-product-attributes-item__label {
        padding-bottom: 2px !important;
    }
}
/* ─────────────────────────────────────────────────────────────
   RELATED PRODUCTS CAROUSEL
   Equal-width cards, left-to-right, prev/next via JS
   ───────────────────────────────────────────────────────────── */
.single-product .dl-related h2 {
    font-size: 44px !important;
    font-weight: 900 !important;
    letter-spacing: -1.5px !important;
    color: var(--text) !important;
    margin: 0 0 28px !important;
    line-height: 1.05 !important;
    margin-bottom: 34px;
}
/* Wrapper div injected by JS */
.single-product .dl-related-scroll-wrap {
    position: relative !important;
    padding: 0 60px !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
/* Scrollable row */
.single-product .dl-related ul.products {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 22px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    padding: 8px 0 24px !important;
    margin: 0 !important;
    list-style: none !important;
    grid-template-columns: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    scroll-snap-type: x proximity !important;
    text-align: left !important;
    direction: ltr !important;
    transform: none !important;
}
.single-product .dl-related ul.products::-webkit-scrollbar {
    display: none !important;
}
/* Equal fixed-width cards */
.single-product .dl-related ul.products li.product {
    flex: 0 0 250px !important;
    width: 250px !important;
    min-width: 250px !important;
    max-width: 250px !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    clear: none !important;
    scroll-snap-align: start !important;
    display: flex !important;
}
.single-product .dl-related ul.products li.product .dl-product-link {
    width: 100% !important;
    height: 370px !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 370px !important;
}
/* Arrow buttons */
.dl-related-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-65%) !important;
    z-index: 10 !important;
    width: 44px !important;
    height: 44px !important;
    border: 1px solid rgba(123,149,92,.18) !important;
    border-radius: 999px !important;
    background: rgba(255,253,249,.96) !important;
    color: #6f8851 !important;
    box-shadow: 0 10px 24px rgba(61,47,42,.12) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    transition: background .2s, color .2s !important;
}
.dl-related-btn-prev {
    left: 8px !important;
}
.dl-related-btn-next {
    right: 8px !important;
}
.dl-related-btn:hover {
    background: var(--green) !important;
    color: #fff !important;
    border-color: var(--green) !important;
}
.dl-related-btn.is-hidden {
    opacity: .25 !important;
    pointer-events: none !important;
}
@media (max-width: 950px) {
    .single-product .dl-related-scroll-wrap {
        padding: 0 48px !important;
    }
    .single-product .dl-related ul.products li.product {
        flex: 0 0 240px !important;
        width: 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
    }
}
@media (max-width: 700px) {
    .single-product .dl-related {
        margin-top: 56px !important;
    }
    .single-product .dl-related h2 {
        font-size: 32px !important;
        margin-bottom: 18px !important;
    }
    .single-product .dl-related-scroll-wrap {
        padding: 0 40px !important;
    }
    .single-product .dl-related ul.products li.product {
        flex: 0 0 75vw !important;
        width: 75vw !important;
        min-width: 75vw !important;
        max-width: 75vw !important;
    }
    .dl-related-btn {
        width: 34px !important;
        height: 34px !important;
        font-size: 22px !important;
    }
    .dl-related-btn-prev {
        left: 3px !important;
    }
    .dl-related-btn-next {
        right: 3px !important;
    }
}
/* =========================================================
   FINAL FIX — SINGLE PRODUCT RELATED / VARIATIONS / INFO
   ========================================================= */
/* -----------------------------
   1) RELATED PRODUCTS CAROUSEL
   Start from left, not center
------------------------------ */
.single-product .dl-related ul.products::before,
.single-product .dl-related ul.products::after {
    display: none !important;
    content: none !important;
}
@media (max-width: 950px) {
    .single-product .dl-related-scroll-wrap {
        padding: 0 48px !important;
    }
    .single-product .dl-related ul.products li.product {
        flex-basis: 240px !important;
        width: 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
    }
}
@media (max-width: 700px) {
    .single-product .dl-related {
        margin-top: 56px !important;
    }
    .single-product .dl-related h2 {
        font-size: 32px !important;
        margin-bottom: 18px !important;
    }
    .single-product .dl-related-scroll-wrap {
        padding: 0 40px !important;
    }
    .single-product .dl-related ul.products li.product {
        flex-basis: 75vw !important;
        width: 75vw !important;
        min-width: 75vw !important;
        max-width: 75vw !important;
    }
    .dl-related-btn {
        width: 34px !important;
        height: 34px !important;
        font-size: 22px !important;
    }
    .dl-related-btn-prev {
        left: 3px !important;
    }
    .dl-related-btn-next {
        right: 3px !important;
    }
}
/* -----------------------------
   2) VARIABLE PRODUCT DROPDOWNS
   Align labels and select fields
------------------------------ */
.single-product .dl-single-cart form.cart:not(.variations_form) {
    display: grid !important;
    grid-template-columns: 74px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
}
.single-product .dl-single-cart .woocommerce-variation-add-to-cart {
    display: grid !important;
    grid-template-columns: 74px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
    width: 100% !important;
}
@media (max-width: 700px) {
    .single-product .dl-single-cart table.variations tr {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }
    .single-product .dl-single-cart table.variations th.label label {
        min-height: 0 !important;
    }
    .single-product .dl-single-cart .woocommerce-variation-add-to-cart {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .single-product .dl-single-cart form.variations_form .quantity,
    .single-product .dl-single-cart form.variations_form .quantity input.qty {
        width: 100% !important;
        max-width: 100% !important;
    }
}
/* -----------------------------
   3) ADDITIONAL INFORMATION
   Show real attribute names
------------------------------ */
/* Stop hiding real WooCommerce labels */
.single-product .dl-tabs #tab-additional_information
    .woocommerce-product-attributes-item__value p {
    margin: 0 !important;
}
@media (max-width: 600px) {
    .single-product .dl-tabs #tab-additional_information
        .woocommerce-product-attributes-item {
        display: flex !important;
        flex-direction: column !important;
    }
    .single-product .dl-tabs #tab-additional_information
        .woocommerce-product-attributes-item__label,
    .single-product .dl-tabs #tab-additional_information
        .woocommerce-product-attributes-item__value {
        display: block !important;
        width: 100% !important;
        padding: 12px 20px !important;
        border-right: 0 !important;
    }
    .single-product .dl-tabs #tab-additional_information
        .woocommerce-product-attributes-item__label {
        padding-bottom: 4px !important;
    }
}
/* =========================================================
   FINAL FIX 2 — RELATED PRODUCTS + VARIATIONS + ADDITIONAL INFO
   ========================================================= */
/* =========================
   RELATED PRODUCTS CAROUSEL
   ========================= */
.single-product .dl-related ul.products li.product .dl-product-image {
    aspect-ratio: auto !important;
    margin: 8px 8px 0 !important;
    height: 185px !important;
    min-height: 185px !important;
    max-height: 185px !important;
    border-radius: 14px !important;
}
.single-product .dl-related ul.products li.product .dl-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.single-product .dl-related ul.products li.product .dl-product-content {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 12px 12px 12px !important;
}
.single-product .dl-related ul.products li.product .dl-product-title {
    font-size: 19px !important;
    line-height: 1.18 !important;
    font-weight: 900 !important;
    margin-bottom: 12px !important;
    min-height: 68px !important;
    /* dovoljno za duža imena */
    overflow: hidden;
    word-break: normal !important;
    hyphens: auto !important;
    letter-spacing: -0.3px !important;
    color: var(--text) !important;
    margin: 0 0 10px !important;
    max-height: 68px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    overflow-wrap: break-word !important;
}
.single-product .dl-related ul.products li.product .dl-product-price {
    margin-top: auto !important;
    margin-bottom: 10px !important;
}
.single-product .dl-related ul.products li.product .dl-product-actions {
    margin-top: auto !important;
}
.single-product .dl-related ul.products li.product .dl-product-actions .button,
.single-product .dl-related ul.products li.product .dl-product-actions .dl-product-button,
.single-product .dl-related ul.products li.product .dl-product-actions .dl-product-inquiry {
    min-height: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
}
.single-product .dl-related-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 15 !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(123,149,92,.16) !important;
    background: rgba(255,253,249,.96) !important;
    color: #6f8851 !important;
    box-shadow: 0 10px 24px rgba(61,47,42,.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    padding: 0 !important;
}
.single-product .dl-related-btn-prev {
    left: 0 !important;
}
.single-product .dl-related-btn-next {
    right: 0 !important;
}
.single-product .dl-related-btn:hover {
    background: var(--green) !important;
    color: #fff !important;
    border-color: var(--green) !important;
}
.single-product .dl-related-btn.is-hidden {
    opacity: .25 !important;
    pointer-events: none !important;
}
@media(max-width:700px) {
    .single-product .dl-related {
        margin-top: 60px;
    }
    .single-product .dl-related h2 {
        font-size: 34px;
        margin-bottom: 22px;
    }
    .single-product .dl-related-scroll-wrap {
        padding: 0 38px;
    }
    .single-product .dl-related ul.products li.product {
        flex: 0 0 235px !important;
        width: 235px !important;
        min-width: 235px !important;
        max-width: 235px !important;
    }
    .single-product .dl-related ul.products li.product .dl-product-title {
        font-size: 18px !important;
        min-height: 118px !important;
    }
    .single-product .dl-related-btn {
        width: 34px !important;
        height: 34px !important;
        font-size: 20px !important;
    }
}
/* =========================
   VARIATION OPTIONS ALIGNMENT
   ========================= */
.single-product .dl-single-cart table.variations tbody {
    display: block !important;
    width: 100% !important;
}
.single-product .dl-single-cart table.variations td.value .reset_variations {
    margin: 0 !important;
    display: inline-flex !important;
    align-self: flex-start !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    color: #6f8851 !important;
    padding: 5px 12px !important;
    border-radius: 999px !important;
    background: rgba(123,149,92,.12) !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    z-index: 2 !important;
    line-height: 1 !important;
    align-items: center !important;
}
.single-product .dl-single-cart .woocommerce-variation-add-to-cart .quantity {
    width: 74px !important;
    margin: 0 !important;
}
.single-product .dl-single-cart .woocommerce-variation-add-to-cart .quantity input.qty {
    width: 100% !important;
    height: 52px !important;
    margin: 0 !important;
}
.single-product .dl-single-cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    width: 100% !important;
    margin: 0 !important;
    height: 52px !important;
    min-height: 52px !important;
}
@media(max-width:700px) {
    .single-product .dl-single-cart table.variations tr {
        grid-template-columns: 1fr !important;
        row-gap: 6px !important;
    }
    .single-product .dl-single-cart .woocommerce-variation-add-to-cart {
        grid-template-columns: 1fr !important;
    }
    .single-product .dl-single-cart .woocommerce-variation-add-to-cart .quantity {
        width: 100% !important;
    }
}
/* =========================
   ADDITIONAL INFORMATION TABLE
   ========================= */
.single-product .dl-tabs #tab-additional_information .shop_attributes {
    width: 100% !important;
    border-collapse: collapse !important;
}
.single-product .dl-tabs #tab-additional_information .shop_attributes th,
.single-product .dl-tabs #tab-additional_information .shop_attributes td {
    padding: 18px 24px !important;
    border: 1px solid rgba(61,47,42,.08) !important;
}
.single-product .dl-tabs #tab-additional_information .shop_attributes th {
    width: 220px !important;
    background: rgba(245,234,219,.4) !important;
    color: #7b665c !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .4px !important;
}
.single-product .dl-tabs #tab-additional_information .shop_attributes td {
    background: #fffdf9 !important;
    color: var(--text) !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}
.single-product .dl-tabs #tab-additional_information .shop_attributes td p {
    margin: 0 !important;
}
@media(max-width:600px) {
    .single-product .dl-tabs #tab-additional_information .shop_attributes th,
    .single-product .dl-tabs #tab-additional_information .shop_attributes td {
        display: block !important;
        width: 100% !important;
    }
    .single-product .dl-tabs #tab-additional_information .shop_attributes th {
        border-bottom: 0 !important;
    }
}
/* =========================================================
   FINAL OVERRIDE — RELATED TITLES + VARIATION ALIGNMENT
   Staviti na sam kraj style.css
   ========================================================= */
/* =========================
   SLICNI PROIZVODI — LEPSI NASLOVI
   ========================= */
/* =========================
   OPCIJE PROIZVODA — VRACENA VELICINA + PORAVNANJE
   ========================= */
.single-product .dl-single-cart table.variations td.value select,
.single-product .dl-single-cart .variations select,
.woocommerce div.product form.cart .variations select {
    display: block !important;
    width: 100% !important;
    min-width: 200px !important;
    max-width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    margin: 0 !important;
    padding: 0 46px 0 16px !important;
    border: 1px solid rgba(61,47,42,.16) !important;
    border-radius: 16px !important;
    background-color: #fff !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: var(--text) !important;
    line-height: 50px !important;
    box-sizing: border-box !important;
}
/* Mobile */
@media (max-width: 700px) {
    .single-product .dl-related ul.products li.product {
        flex: 0 0 235px !important;
        width: 235px !important;
        min-width: 235px !important;
        max-width: 235px !important;
    }
    .single-product .dl-related ul.products li.product .dl-product-link {
        height: 350px !important;
        min-height: 350px !important;
    }
    .single-product .dl-related ul.products li.product .dl-product-image {
        height: 170px !important;
        min-height: 170px !important;
        max-height: 170px !important;
    }
    .single-product .dl-related ul.products li.product .dl-product-title {
        font-size: 18px !important;
        min-height: 64px !important;
        max-height: 64px !important;
    }
    .single-product .dl-single-cart table.variations tr {
        grid-template-columns: 1fr !important;
        row-gap: 6px !important;
        margin-bottom: 14px !important;
    }
    .single-product .dl-single-cart table.variations th.label {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .single-product .dl-single-cart table.variations th.label label {
        height: auto !important;
    }
    .single-product .dl-single-cart table.variations td.value select,
    .single-product .dl-single-cart .variations select,
    .woocommerce div.product form.cart .variations select {
        min-width: 0 !important;
        width: 100% !important;
    }
    .single-product .dl-single-cart .woocommerce-variation-add-to-cart {
        grid-template-columns: 1fr !important;
    }
    .single-product .dl-single-cart .woocommerce-variation-add-to-cart .quantity {
        width: 100% !important;
    }
}
/* =========================================================
   FINAL FIX — ALIGN PRODUCT OPTION LABELS WITH DROPDOWNS
   Staviti na sam kraj style.css
   ========================================================= */
/* Drvena Lija functional fixes: contact form, editable menus, search UI. */
.contact-item a {
    color: var(--green);
    font-weight: 800;
    text-decoration: none;
}
.contact-item a:hover {
    color: var(--orange);
}
.dl-form-notice {
    border-radius: 18px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 16px;
}
.dl-form-notice-success {
    background: #edf6e8;
    color: #3d5f2f;
    border: 1px solid rgba(123,149,92,.35);
}
.dl-form-notice-error {
    background: #fff0ec;
    color: #8a3d2f;
    border: 1px solid rgba(221,110,75,.35);
}
.dl-product-context {
    background: #fff8ef;
    border: 1px solid rgba(242,161,74,.32);
    border-radius: 18px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #5f524a;
}
.dl-product-context a {
    color: var(--green);
    font-weight: 800;
    text-decoration: none;
}
.optional-label {
    font-weight: 700;
    color: #8d7c71;
    font-size: 13px;
}
.dl-honeypot {
    position: absolute!important;
    left: -9999px!important;
    width: 1px!important;
    height: 1px!important;
    overflow: hidden!important;
}
.dl-header-search {
    display: flex;
    align-items: center;
    height: 44px;
    border-radius: 999px;
    background: #fff8ef;
    border: 2px solid rgba(242,161,74,.28);
    overflow: hidden;
}
.dl-header-search input {
    width: 128px;
    height: 100%;
    border: 0;
    background: transparent;
    padding: 0 0 0 15px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    outline: none;
}
.dl-header-search button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--green);
    cursor: pointer;
}
.dl-header-search button:hover {
    color: var(--orange);
}
.footer-links ul,
.footer-links .dl-footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .footer-links li a {
    position: relative!important;
    font-size: 14px!important;
    color: #6f5d53!important;
    white-space: nowrap!important;
}
footer .footer-links li + li a::before {
    content: ""!important;
    position: absolute!important;
    left: -10px!important;
    top: 50%!important;
    width: 4px!important;
    height: 4px!important;
    border-radius: 999px!important;
    background: rgba(123,149,92,.45)!important;
    transform: translateY(-50%)!important;
}
.dl-search-page {
    padding: 44px 0 100px;
    background: var(--bg);
}
.dl-search-page-form {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}
.dl-search-page-form input {
    flex: 1;
    border: 1px solid #decfbe;
    background: #fff;
    border-radius: 18px;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
}
.dl-search-results {
    display: grid;
    gap: 18px;
}
.dl-search-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    background: #fffdf9;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 16px 36px rgba(0,0,0,.05);
}
.dl-search-card-image {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #fff8ef;
    min-height: 120px;
}
.dl-search-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dl-search-card-type {
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--green);
    margin-bottom: 6px;
}
.dl-search-card h2 {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 8px;
}
.dl-search-card h2 a,
.dl-search-card-link {
    color: var(--text);
    text-decoration: none;
}
.dl-search-card h2 a:hover,
.dl-search-card-link:hover {
    color: var(--orange);
}
.dl-search-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #6b5a50;
    margin: 8px 0 10px;
}
.dl-search-card-price {
    font-weight: 900;
    color: var(--orange);
}
.dl-search-card-link {
    font-weight: 900;
}
@media(max-width:1100px) {
    .dl-header-search {
        display: none;
    }
}
@media(max-width:700px) {
    .dl-search-page-form,
.dl-search-card {
        display: block;
    }
    .dl-search-page-form .btn {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    .dl-search-card-image {
        margin-bottom: 14px;
    }
    footer .footer-links li + li a::before {
        display: none!important;
    }
}
/* =========================== */
/* UX PATCH: TRUST, ORDER STEPS, MOBILE CATEGORY SCROLL */
/* =========================== */
.dl-home-trust {
    position: relative;
    z-index: 3;
    margin-top: -26px;
    padding: 0 0 28px;
    background: linear-gradient(180deg, rgba(247,241,232,0) 0%, var(--bg) 54%);
}
.dl-trust-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    align-items: stretch;
}
.dl-trust-item {
    position: relative;
    background: rgba(255,253,249,.96);
    border: 1px solid rgba(123,149,92,.16);
    border-radius: 24px;
    padding: 18px 18px 18px 46px;
    box-shadow: 0 18px 42px rgba(61,47,42,.07);
    min-height: 118px;
}
.dl-trust-item::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 22px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 7px rgba(242,161,74,.16);
}
.dl-trust-item span {
    display: block;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 7px;
}
.dl-trust-item small {
    display: block;
    font-size: 13px;
    line-height: 1.48;
    color: #6d5d54;
    font-weight: 700;
}
.dl-home-categories-section {
    padding-top: 78px;
}
.dl-mobile-scroll-hint {
    display: none;
    text-align: center;
    margin: -22px 0 18px;
    font-size: 14px;
    font-weight: 900;
    color: #6f8851;
}
.dl-order-steps-section {
    position: relative;
    padding: 30px 0 96px;
    background: var(--bg);
}
.dl-section-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 28px;
}
.dl-section-intro > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(123,149,92,.12);
    color: #6f8851;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px;
}
.dl-section-intro h2 {
    font-size: 42px;
    line-height: 1.04;
    letter-spacing: -1.4px;
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 900;
}
.dl-section-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #6d5d54;
    font-weight: 700;
}
.dl-order-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}
.dl-order-step {
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.14);
    border-radius: 26px;
    padding: 24px 22px;
    box-shadow: 0 16px 38px rgba(61,47,42,.06);
    min-height: 210px;
}
.dl-order-step strong {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff1dd;
    color: #b26720;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 16px;
}
.dl-order-step h3 {
    font-size: 20px;
    line-height: 1.1;
    color: var(--text);
    font-weight: 900;
    margin-bottom: 10px;
}
.dl-order-step p {
    font-size: 15px;
    line-height: 1.62;
    color: #6d5d54;
    font-weight: 700;
}
.dl-order-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
}
.dl-order-cta .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.dl-contact-process {
    background: linear-gradient(180deg,#fff8ef,#fffdf9);
    border: 1px solid rgba(242,161,74,.26);
    border-radius: 18px;
    padding: 15px 16px;
    margin-bottom: 16px;
}
.dl-contact-process h3 {
    font-size: 17px;
    line-height: 1.15;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 10px;
}
.dl-contact-process ol {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 6px;
}
.dl-contact-process li {
    font-size: 14px;
    line-height: 1.5;
    color: #6d5d54;
    font-weight: 800;
}
@media(max-width:1100px) {
    .dl-trust-strip,
    .dl-order-steps {
        grid-template-columns: repeat(2,1fr);
    }
}
@media(max-width:700px) {
    .dl-home-trust {
        margin-top: -12px;
        padding-bottom: 18px;
    }
    .dl-trust-strip {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: min(100%, 520px);
    }
    .dl-trust-item {
        min-height: 0;
        border-radius: 18px;
        padding: 14px 12px 14px 34px;
    }
    .dl-trust-item::before {
        left: 13px;
        top: 18px;
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 5px rgba(242,161,74,.14);
    }
    .dl-trust-item span {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .dl-trust-item small {
        font-size: 11.5px;
        line-height: 1.35;
    }
    .dl-home-categories-section {
        padding-top: 54px;
        overflow: hidden;
    }
    .dl-mobile-scroll-hint {
        display: block;
    }
    .home-category-scroll-wrap {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible !important;
    }
    .home-category-scroll-wrap::after {
        content: "";
        position: absolute;
        top: 10px;
        right: -1px;
        width: 52px;
        height: calc(100% - 28px);
        pointer-events: none;
        background: linear-gradient(90deg, rgba(247,241,232,0), var(--bg));
        z-index: 5;
    }
    .home-category-scroll-wrap .home-scroll-btn {
        display: none !important;
    }
    .home-category-scroll-wrap .categories.home-scroll-row {
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x proximity !important;
        overscroll-behavior-x: contain !important;
        touch-action: auto !important;
        gap: 14px !important;
        padding: 10px 18px 28px 0 !important;
        scrollbar-width: thin !important;
        scrollbar-color: rgba(123,149,92,.45) rgba(123,149,92,.08) !important;
    }
    .home-category-scroll-wrap .categories.home-scroll-row::-webkit-scrollbar {
        display: block !important;
        height: 5px !important;
    }
    .home-category-scroll-wrap .categories.home-scroll-row::-webkit-scrollbar-track {
        background: rgba(123,149,92,.08) !important;
        border-radius: 999px !important;
    }
    .home-category-scroll-wrap .categories.home-scroll-row::-webkit-scrollbar-thumb {
        background: rgba(123,149,92,.45) !important;
        border-radius: 999px !important;
    }
    .home-category-scroll-wrap .categories.home-scroll-row .category-card {
        flex: 0 0 72vw !important;
        width: 72vw !important;
        min-width: 72vw !important;
        max-width: 72vw !important;
        height: 330px !important;
        scroll-snap-align: start !important;
    }
    .home-category-scroll-wrap .categories.home-scroll-row .category-card img {
        height: 200px !important;
        flex-basis: 200px !important;
    }
    .home-category-scroll-wrap .categories.home-scroll-row .category-content {
        min-height: 130px !important;
        height: 130px !important;
        padding: 13px !important;
    }
    .home-category-scroll-wrap .categories.home-scroll-row .category-content h3 {
        font-size: 18px !important;
    }
    .dl-order-steps-section {
        padding: 12px 0 74px;
    }
    .dl-section-intro {
        margin-bottom: 22px;
    }
    .dl-section-intro h2 {
        font-size: 31px;
        letter-spacing: -.8px;
    }
    .dl-section-intro p {
        font-size: 15px;
    }
    .dl-order-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .dl-order-step {
        min-height: 0;
        border-radius: 22px;
        padding: 18px;
    }
    .dl-order-step strong {
        width: 34px;
        height: 34px;
        margin-bottom: 12px;
    }
    .dl-order-cta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .dl-order-cta .btn {
        width: 100%;
    }
}
@media(max-width:430px) {
    .home-category-scroll-wrap .categories.home-scroll-row .category-card {
        flex-basis: 76vw !important;
        width: 76vw !important;
        min-width: 76vw !important;
        max-width: 76vw !important;
    }
}
@media(max-width:360px) {
    .dl-trust-strip {
        grid-template-columns: 1fr;
    }
    .home-category-scroll-wrap .categories.home-scroll-row .category-card {
        flex-basis: 82vw !important;
        width: 82vw !important;
        min-width: 82vw !important;
        max-width: 82vw !important;
    }
}
/* ===================================================== */
/* V15 FIX: NAJPRODAVANIJI MOBILE - SWIPE CAROUSEL       */
/* ===================================================== */
.dl-best-sellers-scroll-hint {
    margin-top: -12px;
    margin-bottom: 18px;
}
@media (max-width:700px) {
    .best-sellers-scroll {
        overflow: hidden !important;
    }
    .best-sellers-scroll .container {
        width: 100% !important;
        max-width: none !important;
        padding-left: 16px !important;
        padding-right: 0 !important;
        overflow: visible !important;
    }
    .home-best-sellers-scroll-wrap {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible !important;
        position: relative !important;
    }
    .home-best-sellers-scroll-wrap::after {
        content: "";
        position: absolute;
        top: 10px;
        right: -1px;
        width: 52px;
        height: calc(100% - 28px);
        pointer-events: none;
        background: linear-gradient(90deg, rgba(247,241,232,0), var(--bg));
        z-index: 5;
    }
    .home-best-sellers-scroll-wrap .home-scroll-btn {
        display: none !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products {
        overflow: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products ul.products {
        display: flex !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x proximity !important;
        scroll-behavior: smooth !important;
        overscroll-behavior-x: contain !important;
        touch-action: auto !important;
        padding: 10px 18px 30px 0 !important;
        margin: 0 !important;
        scrollbar-width: thin !important;
        scrollbar-color: rgba(123,149,92,.45) rgba(123,149,92,.08) !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products ul.products::-webkit-scrollbar {
        display: block !important;
        height: 5px !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products ul.products::-webkit-scrollbar-track {
        background: rgba(123,149,92,.08) !important;
        border-radius: 999px !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products ul.products::-webkit-scrollbar-thumb {
        background: rgba(123,149,92,.45) !important;
        border-radius: 999px !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products ul.products li.product {
        float: none !important;
        display: block !important;
        flex: 0 0 72vw !important;
        width: 72vw !important;
        min-width: 72vw !important;
        max-width: 72vw !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        scroll-snap-align: start !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products .dl-product-link {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
}
@media (max-width:430px) {
    .home-best-sellers-scroll-wrap .best-sellers-products ul.products li.product {
        flex-basis: 76vw !important;
        width: 76vw !important;
        min-width: 76vw !important;
        max-width: 76vw !important;
    }
}
@media (max-width:360px) {
    .home-best-sellers-scroll-wrap .best-sellers-products ul.products li.product {
        flex-basis: 82vw !important;
        width: 82vw !important;
        min-width: 82vw !important;
        max-width: 82vw !important;
    }
}
/* ===================================================== */
/* V16 FIX: MOBILE PRODUCT CARDS LIKE CATEGORIES + CTA   */
/* ===================================================== */
@media (max-width:700px) {
    /* Match the category carousel spacing/behavior so product cards feel fluid. */
    .best-sellers-scroll .container {
        width: min(1380px, 92%) !important;
        max-width: 1380px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible !important;
    }
    .home-best-sellers-scroll-wrap {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible !important;
        position: relative !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products {
        overflow: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products ul.products {
        display: flex !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x proximity !important;
        scroll-behavior: smooth !important;
        overscroll-behavior-x: contain !important;
        touch-action: auto !important;
        padding: 10px 18px 30px 0 !important;
        margin: 0 !important;
        scrollbar-width: thin !important;
        scrollbar-color: rgba(123,149,92,.45) rgba(123,149,92,.08) !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products ul.products li.product {
        float: none !important;
        display: block !important;
        flex: 0 0 72vw !important;
        width: 72vw !important;
        min-width: 72vw !important;
        max-width: 72vw !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        scroll-snap-align: start !important;
    }
    /* Compact the product card itself so it no longer feels oversized on phones. */
    .home-best-sellers-scroll-wrap .best-sellers-products .dl-product-link {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        border-radius: 22px !important;
        box-sizing: border-box !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products .dl-product-image {
        margin: 10px 10px 0 !important;
        height: 200px !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        border-radius: 16px !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products .dl-product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products .dl-product-content {
        padding: 12px 13px 14px !important;
        min-height: 0 !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products .dl-product-title {
        font-size: 18px !important;
        line-height: 1.12 !important;
        margin-bottom: 7px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products .dl-product-price {
        font-size: 14px !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products .dl-product-actions {
        gap: 7px !important;
        margin-top: 2px !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products .button.add_to_cart_button,
    .home-best-sellers-scroll-wrap .best-sellers-products .dl-product-button,
    .home-best-sellers-scroll-wrap .best-sellers-products .dl-product-inquiry {
        min-height: 40px !important;
        padding: 9px 12px !important;
        font-size: 13.5px !important;
        border-radius: 14px !important;
    }
    /* Center the order CTA buttons on phones instead of stretching awkwardly. */
    .dl-order-cta {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        text-align: center !important;
    }
    .dl-order-cta .btn {
        width: min(100%, 290px) !important;
        max-width: 290px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        justify-content: center !important;
        text-align: center !important;
    }
}
@media (max-width:430px) {
    .home-best-sellers-scroll-wrap .best-sellers-products ul.products li.product {
        flex-basis: 76vw !important;
        width: 76vw !important;
        min-width: 76vw !important;
        max-width: 76vw !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products .dl-product-image {
        height: 195px !important;
    }
}
@media (max-width:360px) {
    .home-best-sellers-scroll-wrap .best-sellers-products ul.products li.product {
        flex-basis: 82vw !important;
        width: 82vw !important;
        min-width: 82vw !important;
        max-width: 82vw !important;
    }
    .home-best-sellers-scroll-wrap .best-sellers-products .dl-product-image {
        height: 188px !important;
    }
}
/* ===================================================== */
/* V17 FIX: STICKY NAVBAR + MOBILE KATEGORIJE PAGE       */
/* ===================================================== */
/* Keep the navigation available while scrolling without changing the visual identity. */
.site-header,
header.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    background: rgba(255,253,249,.96) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 6px 24px rgba(61,47,42,.07) !important;
}
body.admin-bar .site-header,
body.admin-bar header.site-header {
    top: 32px !important;
}
@media (max-width:782px) {
    body.admin-bar .site-header,
    body.admin-bar header.site-header {
        top: 46px !important;
    }
}
@media (max-width:700px) {
    .site-header .navbar,
    header.site-header .navbar {
        padding: 10px 0 !important;
    }
    .site-header .logo img,
    header.site-header .logo img {
        height: 64px !important;
        width: auto !important;
    }
    .site-header .navbar-actions,
    header.site-header .navbar-actions {
        gap: 10px !important;
    }
}
/* Mobile Kategorije page: compact, scannable cards instead of huge one-column images. */
@media (max-width:700px) {
    .kategorije-hero {
        padding: 44px 0 28px !important;
    }
    .kategorije-hero .asset-page-title {
        margin-bottom: 10px !important;
    }
    .kategorije-hero .asset-page-title img {
        width: min(330px, 92vw) !important;
    }
    .kategorije-hero p {
        max-width: 34rem !important;
        margin: 0 auto !important;
        font-size: 15.5px !important;
        line-height: 1.55 !important;
    }
    .kategorije-section {
        padding: 30px 0 76px !important;
    }
    .kategorije-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
        align-items: stretch !important;
    }
    .kategorije-grid .category-card {
        border-radius: 18px !important;
        min-width: 0 !important;
        box-shadow: 0 8px 22px rgba(61,47,42,.06) !important;
    }
    .kategorije-grid .category-card img {
        aspect-ratio: 1.08 / .82 !important;
        height: auto !important;
        max-height: 150px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    .kategorije-grid .category-content {
        min-height: 0 !important;
        padding: 10px 10px 12px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 7px !important;
    }
    .kategorije-grid .category-content h3 {
        font-size: 16px !important;
        line-height: 1.12 !important;
        letter-spacing: -.2px !important;
        margin: 0 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .kategorije-grid .category-content .cat-desc {
        display: none !important;
    }
    .kategorije-grid .category-content .cat-count {
        font-size: 11px !important;
        padding: 4px 8px !important;
        width: max-content !important;
    }
    .kategorije-grid .category-content > span:not(.cat-count),
    .kategorije-grid .category-content .category-cta {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 34px !important;
        padding: 7px 9px !important;
        font-size: 12px !important;
        justify-self: auto !important;
        align-self: stretch !important;
        margin-top: 1px !important;
    }
}
@media (max-width:380px) {
    .kategorije-grid {
        gap: 12px !important;
    }
    .kategorije-grid .category-card img {
        max-height: 132px !important;
    }
    .kategorije-grid .category-content h3 {
        font-size: 15px !important;
    }
}
/* v18: Kategorije page desktop/tablet cleanup - make cards scannable, not oversized. */
.kategorije-section .container {
    max-width: 1180px !important;
}
.kategorije-grid .category-card {
    min-width: 0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
}
.kategorije-grid .category-card img {
    width: 100% !important;
    height: 260px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    display: block !important;
}
.kategorije-grid .category-content {
    min-height: 154px !important;
    padding: 18px 18px 20px !important;
    gap: 12px !important;
}
.kategorije-grid .category-content h3 {
    font-size: 24px !important;
    line-height: 1.12 !important;
    letter-spacing: -.5px !important;
}
.kategorije-grid .category-content .cat-desc {
    font-size: 14px !important;
    line-height: 1.45 !important;
    margin-top: 8px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.kategorije-grid .category-content .category-cta,
.kategorije-grid .category-content > span:not(.cat-count) {
    align-self: flex-start !important;
    width: auto !important;
    min-height: 38px !important;
    padding: 9px 14px !important;
    font-size: 13px !important;
}
@media (max-width:1100px) {
    .kategorije-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 22px !important;
    }
    .kategorije-grid .category-card img {
        height: 240px !important;
    }
}
@media (max-width:700px) {
    .kategorije-section .container {
        width: min(100% - 24px, 1180px) !important;
    }
    .kategorije-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }
    .kategorije-grid .category-card {
        border-radius: 18px !important;
    }
    .kategorije-grid .category-card img {
        height: auto !important;
        aspect-ratio: 4 / 3 !important;
        max-height: 150px !important;
        object-fit: cover !important;
    }
    .kategorije-grid .category-content {
        min-height: 0 !important;
        padding: 10px 10px 12px !important;
    }
    .kategorije-grid .category-content h3 {
        font-size: 16px !important;
        line-height: 1.12 !important;
        letter-spacing: -.2px !important;
    }
}
@media (max-width:380px) {
    .kategorije-grid .category-card img {
        max-height: 132px !important;
    }
}
/* ===================================================== */
/* V19 FIX: ROBUST MOBILE NAVIGATION + STICKY HEADER      */
/* ===================================================== */
@media (max-width:900px) {
    html {
        overflow-x: hidden !important;
    }
    body {
        padding-top: 84px !important;
        overflow-x: hidden !important;
    }
    body.admin-bar {
        padding-top: 130px !important;
    }
    header.site-header,
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 10000 !important;
        transform: none !important;
    }
    body.admin-bar header.site-header,
    body.admin-bar .site-header {
        top: 46px !important;
    }
    header.site-header .container.navbar,
    .site-header .container.navbar {
        width: min(100% - 28px, 1380px) !important;
        min-height: 84px !important;
        padding: 9px 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
    }
    header.site-header .logo,
    .site-header .logo {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        min-width: 0 !important;
    }
    header.site-header .logo img,
    .site-header .logo img {
        height: 62px !important;
        max-width: 158px !important;
        width: auto !important;
        object-fit: contain !important;
    }
    header.site-header .navbar-actions,
    .site-header .navbar-actions {
        margin-left: auto !important;
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 10px !important;
    }
    header.site-header .mobile-toggle,
    .site-header .mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
        border-radius: 999px !important;
        background: #fff8ef !important;
        border: 2px solid rgba(242,161,74,.35) !important;
        position: relative !important;
        z-index: 10003 !important;
        flex: 0 0 44px !important;
    }
    header.site-header .mobile-toggle span,
    .site-header .mobile-toggle span {
        position: absolute !important;
        width: 22px !important;
        height: 2.5px !important;
        left: 50% !important;
        background: var(--text) !important;
        transform: translateX(-50%) !important;
        transition: transform .2s ease, opacity .2s ease, top .2s ease !important;
    }
    header.site-header .mobile-toggle span:nth-child(1),
    .site-header .mobile-toggle span:nth-child(1) {
        top: 14px !important;
    }
    header.site-header .mobile-toggle span:nth-child(2),
    .site-header .mobile-toggle span:nth-child(2) {
        top: 20px !important;
    }
    header.site-header .mobile-toggle span:nth-child(3),
    .site-header .mobile-toggle span:nth-child(3) {
        top: 26px !important;
    }
    body.mobile-open header.site-header .mobile-toggle span:nth-child(1),
    body.mobile-open .site-header .mobile-toggle span:nth-child(1) {
        top: 20px !important;
        transform: translateX(-50%) rotate(45deg) !important;
    }
    body.mobile-open header.site-header .mobile-toggle span:nth-child(2),
    body.mobile-open .site-header .mobile-toggle span:nth-child(2) {
        opacity: 0 !important;
    }
    body.mobile-open header.site-header .mobile-toggle span:nth-child(3),
    body.mobile-open .site-header .mobile-toggle span:nth-child(3) {
        top: 20px !important;
        transform: translateX(-50%) rotate(-45deg) !important;
    }
    header.site-header .main-navigation,
    .site-header .main-navigation {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: min(88vw, 360px) !important;
        max-width: 360px !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        margin: 0 !important;
        padding: 98px 22px 28px !important;
        background: #fffdf9 !important;
        box-shadow: -14px 0 38px rgba(61,47,42,.16) !important;
        display: block !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        transform: translate3d(105%, 0, 0) !important;
        transition: transform .28s ease !important;
        z-index: 10002 !important;
        box-sizing: border-box !important;
    }
    body.admin-bar header.site-header .main-navigation,
    body.admin-bar .site-header .main-navigation {
        padding-top: 104px !important;
    }
    body.mobile-open header.site-header .main-navigation,
    body.mobile-open .site-header .main-navigation {
        transform: translate3d(0, 0, 0) !important;
    }
    header.site-header .main-navigation .dl-main-menu,
    .site-header .main-navigation .dl-main-menu,
    header.site-header .main-navigation ul,
    .site-header .main-navigation ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    header.site-header .main-navigation li,
    .site-header .main-navigation li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    header.site-header .main-navigation a,
    .site-header .main-navigation a {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 46px !important;
        padding: 11px 14px !important;
        border-radius: 16px !important;
        background: #fff8ef !important;
        border: 1px solid rgba(123,149,92,.14) !important;
        color: var(--text) !important;
        font-size: 18px !important;
        line-height: 1.15 !important;
        font-weight: 900 !important;
        text-decoration: none !important;
        white-space: normal !important;
        box-sizing: border-box !important;
    }
    header.site-header .main-navigation a:hover,
    .site-header .main-navigation a:hover {
        color: #fff !important;
        background: var(--green) !important;
        border-color: var(--green) !important;
    }
    body.mobile-open {
        overflow: hidden !important;
        position: static !important;
        width: auto !important;
        left: auto !important;
        top: auto !important;
    }
}
@media (max-width:420px) {
    body {
        padding-top: 78px !important;
    }
    body.admin-bar {
        padding-top: 124px !important;
    }
    header.site-header .container.navbar,
    .site-header .container.navbar {
        min-height: 78px !important;
    }
    header.site-header .logo img,
    .site-header .logo img {
        height: 56px !important;
        max-width: 145px !important;
    }
    header.site-header .main-navigation,
    .site-header .main-navigation {
        width: min(90vw, 340px) !important;
        padding: 90px 18px 24px !important;
    }
    header.site-header .main-navigation a,
    .site-header .main-navigation a {
        min-height: 44px !important;
        font-size: 17px !important;
        padding: 10px 13px !important;
    }
}
/* Align variation labels and dropdowns into a single shared grid so every
   row uses the same column widths and all selects line up perfectly. */
@media (min-width: 701px) {
    .single-product .dl-single-cart table.variations tbody {
        display: grid !important;
        grid-template-columns: auto minmax(0, 1fr) !important;
        gap: 12px 18px !important;
        width: 100% !important;
        align-items: center !important;
    }
    .single-product .dl-single-cart table.variations tr {
        display: contents !important;
    }
}
/* ─────────────────────────────────────────────────────────────
   DESCRIPTION PANEL — cleaner card look
   ───────────────────────────────────────────────────────────── */
.single-product .dl-tabs .panel#tab-description {
    padding: 32px !important;
    background: #fffdf9 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(61,47,42,.05) !important;
    color: #5f5149 !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
}
.single-product .dl-tabs .panel#tab-description h2 {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(61,47,42,.08) !important;
}
.single-product .dl-tabs .panel#tab-description p {
    margin-bottom: 16px !important;
}
.single-product .dl-tabs .panel#tab-description p:last-child {
    margin-bottom: 0 !important;
}
.single-product .dl-tabs .panel#tab-description img {
    border-radius: 12px !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 16px 0 !important;
}
@media (max-width: 700px) {
    .single-product .dl-tabs .panel#tab-description {
        padding: 24px 18px !important;
    }
}
/* =========================== */
/* OTP / CARD BRANDING & LEGAL */
/* =========================== */
.dl-payment-branding {
    width: min(1380px, 92%);
    margin: 52px auto;
    padding: 34px;
    border-radius: 34px;
    background: linear-gradient(135deg, #fffdf9 0%, #fff7ec 100%);
    border: 1px solid rgba(123,149,92,.16);
    box-shadow: 0 22px 50px rgba(67,43,28,.08);
}
.dl-payment-branding--checkout,
.dl-payment-branding--compact {
    width: 100%;
    margin: 0 0 18px;
    padding: 20px;
    border-radius: 22px;
    box-shadow: none;
    background: #fffdf9;
}
.dl-payment-branding--legal {
    width: 100%;
    margin: 24px 0 34px;
}
.dl-payment-branding__head {
    max-width: 840px;
    margin-bottom: 24px;
}
.dl-payment-branding__head > span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(123,149,92,.12);
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.dl-payment-branding__head h2 {
    margin: 12px 0 10px;
    color: var(--text);
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -.03em;
}
.dl-payment-branding--compact .dl-payment-branding__head h2 {
    font-size: 22px;
}
.dl-payment-branding__head p {
    color: #6e5b52;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.65;
}
.dl-payment-branding--compact .dl-payment-branding__head p {
    font-size: 13px;
    line-height: 1.55;
}
.dl-payment-branding__grid {
    display: grid;
    grid-template-columns: minmax(150px, .75fr) minmax(360px, 1fr) minmax(310px, .95fr);
    column-gap: clamp(36px, 8vw, 260px);
    row-gap: 22px;
    align-items: stretch;
}
.dl-payment-branding--compact .dl-payment-branding__grid {
    grid-template-columns: 1fr;
    gap: 16px;
}
.dl-payment-branding__group {
    min-width: 0;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(61,47,42,.08);
}
.dl-payment-branding--compact .dl-payment-branding__group {
    padding: 14px;
    border-radius: 18px;
}
.dl-payment-branding__label {
    display: block;
    margin-bottom: 14px;
    color: #8a786e;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.dl-bank-logo {
    width: 180px;
    min-height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 20px;
    background: #ffffff;
    color: #2d2d2d;
    border: 1px solid rgba(61,47,42,.12);
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(67,43,28,.06);
}
.dl-bank-logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 38px;
    border-radius: 12px;
    background: #52ae32;
    color: #fff;
    font-weight: 900;
    letter-spacing: -.04em;
    font-size: 22px;
}
.dl-bank-logo__text {
    color: #303030;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.02em;
}
.dl-brand-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.dl-brand-row a {
    text-decoration: none;
    color: inherit;
}
.dl-brand-row--programs {
    gap: 14px;
}
.dl-brand-badge {
    width: 84px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 6px 8px;
    border-radius: 14px;
    background: #fff;
    color: #332522;
    border: 1px solid rgba(61,47,42,.14);
    box-shadow: 0 8px 16px rgba(67,43,28,.06);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}
.dl-brand-badge--visa {
    color: #203f8f;
    letter-spacing: .03em;
}
.dl-brand-badge--mastercard,
.dl-brand-badge--maestro,
.dl-brand-badge--dina {
    letter-spacing: -.02em;
}
.dl-brand-badge--visa-secure,
.dl-brand-badge--mc-id-check {
    width: 132px;
    height: 54px;
    font-size: 13px;
    color: #2f3a52;
}
.dl-brand-badge--mc-id-check {
    text-transform: none;
}
.dl-checkout-legal-note {
    margin: 0 0 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f4f8ee;
    border: 1px solid rgba(123,149,92,.18);
    color: #5f5149;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}
.dl-checkout-legal-note strong {
    color: var(--green);
    font-weight: 900;
}
.dl-checkout-legal-note a {
    color: var(--green);
    font-weight: 900;
}
.dl-legal-hero h1 {
    margin: 0 0 16px;
    color: var(--text);
    font-size: clamp(34px, 5vw, 70px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -.05em;
}
.dl-legal-section {
    padding: 72px 0 96px;
    background: linear-gradient(180deg, #f7f1e8 0%, #fff8ef 100%);
}
.dl-legal-wrap {
    display: block;
}
.dl-legal-panel {
    max-width: 1040px;
    margin: 0 auto;
    padding: clamp(26px, 5vw, 58px);
    border-radius: 36px;
    background: #fffdf9;
    border: 1px solid rgba(123,149,92,.14);
    box-shadow: 0 24px 62px rgba(67,43,28,.08);
}
.dl-legal-panel h2 {
    margin: 0 0 22px;
    color: var(--text);
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.03em;
}
.dl-legal-panel h2:not(:first-child) {
    margin-top: 48px;
}
.dl-legal-panel h3 {
    margin: 34px 0 12px;
    color: var(--green);
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.2;
    font-weight: 900;
}
.dl-legal-panel p,
.dl-legal-panel li {
    color: #5f5149;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.82;
}
.dl-legal-panel p + p {
    margin-top: 12px;
}
.dl-legal-panel a {
    color: var(--green);
    font-weight: 900;
}
.dl-legal-data {
    display: grid;
    gap: 10px;
    margin: 18px 0 26px;
}
.dl-legal-data div {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff7ec;
    border: 1px solid rgba(242,161,74,.13);
}
.dl-legal-data dt {
    color: #8a786e;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.dl-legal-data dd {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.45;
}
.dl-form-lines {
    margin: 18px 0 26px;
    padding: 24px;
    border-radius: 24px;
    background: #fff7ec;
    border: 1px dashed rgba(123,149,92,.34);
}
.dl-form-lines p {
    margin: 0 0 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.7;
}
.dl-print-button {
    margin-top: 18px;
}
@media (max-width: 1080px) {
    .dl-payment-branding__grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
}
@media (max-width: 720px) {
    .dl-payment-branding {
        padding: 22px;
        border-radius: 26px;
    }
    .dl-payment-branding__head p,
    .dl-legal-panel p,
    .dl-legal-panel li {
        font-size: 15px;
    }
    .dl-brand-row {
        gap: 10px;
    }
    .dl-brand-badge {
        width: 78px;
        height: 48px;
        font-size: 12px;
    }
    .dl-brand-badge--visa-secure,
    .dl-brand-badge--mc-id-check {
        width: 124px;
        height: 50px;
        font-size: 12px;
    }
    .dl-bank-logo {
        width: 166px;
        min-height: 62px;
    }
    .dl-legal-section {
        padding: 42px 0 68px;
    }
    .dl-legal-panel {
        border-radius: 28px;
    }
    .dl-legal-data div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
@media print {
    header,
    footer,
    .dl-site-loader,
    .dl-print-button {
        display: none !important;
    }
    body {
        background: #fff !important;
        color: #000 !important;
    }
    .dl-legal-section,
    .dl-legal-panel,
    .info-hero {
        padding: 0 !important;
        margin: 0 !important;
        background: #fff !important;
        box-shadow: none !important;
        border: 0 !important;
    }
    .dl-legal-panel p,
    .dl-legal-panel dd,
    .dl-legal-panel dt {
        color: #000 !important;
    }
}

/* Corrected payment logo rendering: actual logo image assets, not text placeholders. */
.dl-bank-logo {
    width: 180px;
    min-height: 70px;
    padding: 0;
    overflow: hidden;
}
.dl-bank-logo img,
.dl-brand-badge img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.dl-brand-badge {
    padding: 0;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
}
.dl-brand-badge--visa-secure,
.dl-brand-badge--mc-id-check {
    width: 132px;
    height: 54px;
}
@media (max-width: 720px) {
    .dl-bank-logo {
        width: 166px;
        min-height: 62px;
    }
    .dl-brand-badge img,
    .dl-bank-logo img {
        width: 100%;
        height: 100%;
    }
}

/* V3 payment logo asset rendering: constrain uploaded logo files inside fixed, non-overflowing frames. */
.dl-payment-branding__group {
    overflow: hidden;
}
.dl-bank-logo,
.dl-brand-badge {
    box-sizing: border-box;
    overflow: hidden;
    flex-shrink: 0;
}
.dl-bank-logo {
    width: 190px;
    height: 82px;
    min-height: 0;
    max-width: 100%;
    padding: 12px 16px;
}
.dl-bank-logo img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
}
.dl-brand-badge {
    width: 112px;
    height: 68px;
    max-width: 100%;
    padding: 10px 12px;
}
.dl-brand-badge img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.dl-brand-row--acceptance .dl-brand-badge {
    width: 112px;
    height: 68px;
}
.dl-brand-row--programs .dl-brand-badge,
.dl-brand-badge--visa-secure,
.dl-brand-badge--mc-id-check {
    width: 155px;
    height: 68px;
}
.dl-brand-row--programs a {
    display: inline-flex;
    max-width: 100%;
}
.dl-payment-branding--compact .dl-brand-badge,
.dl-payment-branding--compact .dl-brand-row--acceptance .dl-brand-badge {
    width: 96px;
    height: 58px;
    padding: 8px 10px;
}
.dl-payment-branding--compact .dl-brand-row--programs .dl-brand-badge,
.dl-payment-branding--compact .dl-brand-badge--visa-secure,
.dl-payment-branding--compact .dl-brand-badge--mc-id-check {
    width: 136px;
    height: 58px;
}
.dl-payment-branding--compact .dl-bank-logo {
    width: 170px;
    height: 70px;
    padding: 10px 14px;
}
.dl-payment-branding--compact .dl-bank-logo img {
    max-height: 50px;
}
@media (max-width: 720px) {
    .dl-brand-row {
        gap: 10px;
    }
    .dl-brand-row--acceptance .dl-brand-badge,
    .dl-payment-branding--compact .dl-brand-row--acceptance .dl-brand-badge {
        width: 92px;
        height: 56px;
        padding: 8px 9px;
    }
    .dl-brand-row--programs .dl-brand-badge,
    .dl-brand-badge--visa-secure,
    .dl-brand-badge--mc-id-check,
    .dl-payment-branding--compact .dl-brand-row--programs .dl-brand-badge,
    .dl-payment-branding--compact .dl-brand-badge--visa-secure,
    .dl-payment-branding--compact .dl-brand-badge--mc-id-check {
        width: 130px;
        height: 56px;
        padding: 8px 10px;
    }
    .dl-bank-logo,
    .dl-payment-branding--compact .dl-bank-logo {
        width: 164px;
        height: 66px;
        min-height: 0;
        padding: 10px 12px;
    }
    .dl-bank-logo img,
    .dl-payment-branding--compact .dl-bank-logo img {
        max-height: 46px;
    }
}
@media (max-width: 420px) {
    .dl-payment-branding {
        width: min(100% - 24px, 1380px);
        padding: 18px;
    }
    .dl-brand-row--acceptance .dl-brand-badge,
    .dl-payment-branding--compact .dl-brand-row--acceptance .dl-brand-badge {
        width: calc(50% - 5px);
        min-width: 118px;
        max-width: 140px;
    }
    .dl-brand-row--programs .dl-brand-badge,
    .dl-payment-branding--compact .dl-brand-row--programs .dl-brand-badge {
        width: 100%;
        max-width: 155px;
    }
}

/* v4: balanced payment logo layout — centered frames, tighter visual whitespace, no overflow. */
.dl-payment-branding__grid {
    grid-template-columns: minmax(240px, .92fr) minmax(320px, 1fr) minmax(300px, .96fr);
    column-gap: clamp(28px, 5vw, 120px);
    align-items: start;
}
.dl-payment-branding__group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 176px;
    padding: 18px 18px 20px;
    text-align: center;
    overflow: hidden;
}
.dl-payment-branding__label {
    width: 100%;
    margin-bottom: 14px;
    text-align: left;
}
.dl-payment-branding__group--bank .dl-payment-branding__label,
.dl-payment-branding__group--acceptance .dl-payment-branding__label,
.dl-payment-branding__group--programs .dl-payment-branding__label {
    text-align: left;
}
.dl-bank-logo,
.dl-brand-badge {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
}
.dl-bank-logo {
    width: 168px;
    height: 92px;
    padding: 10px 16px;
}
.dl-brand-row {
    width: 100%;
    justify-content: center;
    align-items: center;
}
.dl-brand-row--acceptance {
    display: grid;
    grid-template-columns: repeat(2, minmax(118px, 132px));
    gap: 12px 14px;
    justify-content: center;
    justify-items: center;
}
.dl-brand-row--programs {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 168px));
    gap: 12px 14px;
    justify-content: center;
    justify-items: center;
}
.dl-brand-row--programs a {
    display: inline-flex;
    width: 100%;
    max-width: 168px;
}
.dl-brand-row--acceptance .dl-brand-badge,
.dl-payment-branding--compact .dl-brand-row--acceptance .dl-brand-badge {
    width: 132px;
    height: 78px;
    padding: 10px 12px;
}
.dl-brand-row--programs .dl-brand-badge,
.dl-brand-badge--visa-secure,
.dl-brand-badge--mc-id-check,
.dl-payment-branding--compact .dl-brand-row--programs .dl-brand-badge,
.dl-payment-branding--compact .dl-brand-badge--visa-secure,
.dl-payment-branding--compact .dl-brand-badge--mc-id-check {
    width: 168px;
    height: 78px;
    padding: 10px 12px;
}
.dl-bank-logo img,
.dl-brand-badge img,
.dl-payment-branding--compact .dl-bank-logo img,
.dl-payment-branding--compact .dl-brand-badge img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
    object-position: center center;
}
.dl-payment-branding--compact .dl-payment-branding__group {
    min-height: 0;
    padding: 14px;
}
.dl-payment-branding--compact .dl-bank-logo {
    width: 150px;
    height: 78px;
    padding: 9px 14px;
}
@media (max-width: 1080px) {
    .dl-payment-branding__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .dl-payment-branding__group {
        min-height: 0;
    }
}
@media (max-width: 720px) {
    .dl-payment-branding__group {
        padding: 16px;
    }
    .dl-bank-logo,
    .dl-payment-branding--compact .dl-bank-logo {
        width: 150px;
        height: 80px;
        padding: 9px 14px;
    }
    .dl-brand-row--acceptance,
    .dl-payment-branding--compact .dl-brand-row--acceptance {
        grid-template-columns: repeat(2, minmax(106px, 124px));
        gap: 10px;
    }
    .dl-brand-row--programs,
    .dl-payment-branding--compact .dl-brand-row--programs {
        grid-template-columns: repeat(2, minmax(128px, 148px));
        gap: 10px;
    }
    .dl-brand-row--acceptance .dl-brand-badge,
    .dl-payment-branding--compact .dl-brand-row--acceptance .dl-brand-badge {
        width: 124px;
        height: 72px;
        min-width: 0;
        padding: 9px 10px;
    }
    .dl-brand-row--programs .dl-brand-badge,
    .dl-brand-badge--visa-secure,
    .dl-brand-badge--mc-id-check,
    .dl-payment-branding--compact .dl-brand-row--programs .dl-brand-badge,
    .dl-payment-branding--compact .dl-brand-badge--visa-secure,
    .dl-payment-branding--compact .dl-brand-badge--mc-id-check {
        width: 148px;
        height: 72px;
        padding: 9px 10px;
    }
}
@media (max-width: 420px) {
    .dl-brand-row--acceptance,
    .dl-payment-branding--compact .dl-brand-row--acceptance {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dl-brand-row--programs,
    .dl-payment-branding--compact .dl-brand-row--programs {
        grid-template-columns: 1fr;
    }
    .dl-brand-row--acceptance .dl-brand-badge,
    .dl-payment-branding--compact .dl-brand-row--acceptance .dl-brand-badge {
        width: 100%;
        min-width: 0;
        max-width: 136px;
    }
    .dl-brand-row--programs .dl-brand-badge,
    .dl-payment-branding--compact .dl-brand-row--programs .dl-brand-badge {
        width: 100%;
        max-width: 168px;
    }
}
