
:root {
    --dpc-bg: #111816;
    --dpc-green: #254D43;
    --dpc-gold: #C39A63;
    --dpc-cream: #EEE7DB;
    --dpc-beige: #DAD0BF;
    --dpc-ink: #1B201E;
    --dpc-muted: #6F746F;
    --dpc-line: rgba(17, 24, 22, .11);
    --dpc-surface: #F7F3EB;
}

.dpc-page,
.dpc-page * {
    box-sizing: border-box;
}

.dpc-page {
    width: 100%;
    overflow: clip;
    background: var(--dpc-cream);
    color: var(--dpc-ink);
    font-family: inherit;
}

.dpc-page a {
    color: inherit;
    text-decoration: none;
}

.dpc-page button,
.dpc-page input {
    font: inherit;
}

.dpc-page button {
    border: 0 !important;
    outline: 0;
    box-shadow: none !important;
}

.dpc-shell {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: 64px 0 84px;
}

.dpc-hero {
    position: relative;
    isolation: isolate;
    min-height: 250px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 30%, rgba(37, 77, 67, .62), transparent 34%),
        var(--dpc-bg);
    color: var(--dpc-cream);
}

.dpc-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(195,154,99,.7), transparent);
}

.dpc-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1320px, calc(100% - 48px));
    min-height: 250px;
    margin: 0 auto;
    padding: 62px 0 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.dpc-eyebrow,
.dpc-section-head__label,
.dpc-item__kicker {
    color: var(--dpc-gold);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .16em;
}

.dpc-hero h1 {
    margin: 10px 0 0;
    color: var(--dpc-cream);
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.dpc-hero__count {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--dpc-beige);
}

.dpc-hero__count strong {
    color: var(--dpc-gold);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 400;
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
}

.dpc-hero__count span {
    font-size: 13px;
}

.dpc-hero__ornament {
    position: absolute;
    z-index: 0;
    width: 380px;
    aspect-ratio: 1;
    border: 1px solid rgba(195, 154, 99, .08);
    border-radius: 56% 44% 66% 34% / 43% 60% 40% 57%;
    transform: rotate(34deg);
}

.dpc-hero__ornament::before,
.dpc-hero__ornament::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(195, 154, 99, .07);
    border-radius: inherit;
}

.dpc-hero__ornament::before { inset: 13%; }
.dpc-hero__ornament::after { inset: 28%; }

.dpc-hero__ornament--one {
    right: -80px;
    top: -155px;
}

.dpc-hero__ornament--two {
    left: 14%;
    bottom: -310px;
    width: 440px;
    transform: rotate(202deg);
    opacity: .6;
}

.dpc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 48px;
    align-items: start;
}

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

.dpc-section-head h2,
.dpc-summary__head h2 {
    margin: 6px 0 0;
    color: var(--dpc-ink);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.dpc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(37, 77, 67, .35);
    color: var(--dpc-green) !important;
    font-size: 13px;
    font-weight: 650;
    transition: border-color .2s ease, color .2s ease;
}

.dpc-text-link:hover {
    border-color: var(--dpc-gold);
    color: var(--dpc-gold) !important;
}

.dpc-items {
    display: grid;
    gap: 14px;
}

.dpc-item {
    position: relative;
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 22px;
    min-width: 0;
    padding: 16px;
    overflow: hidden;
    border: 1px solid var(--dpc-line);
    border-radius: 4px 22px 4px 4px;
    background: rgba(255, 255, 255, .54);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.dpc-item:hover {
    transform: translateY(-2px);
    border-color: rgba(195, 154, 99, .44);
    background: rgba(255, 255, 255, .72);
}

.dpc-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 2px;
    background: var(--dpc-gold);
    opacity: .72;
}

.dpc-item__media {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 2px 14px 2px 2px;
    background: #E6DED0;
}

.dpc-item__media a,
.dpc-item__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.dpc-item__media img {
    object-fit: cover;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.dpc-item:hover .dpc-item__media img {
    transform: scale(1.035);
}

.dpc-item__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 7px 4px 5px 0;
}

.dpc-item__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.dpc-item__title {
    margin: 4px 0 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.dpc-item__title a:hover {
    color: var(--dpc-green);
}

.dpc-item__meta {
    color: var(--dpc-muted);
    font-size: 12px;
    line-height: 1.8;
}

.dpc-item__meta dl,
.dpc-item__meta p {
    margin: 0;
}

.dpc-item__meta dt,
.dpc-item__meta dd {
    display: inline;
    float: none;
}

.dpc-remove {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #7B5C54 !important;
    font-size: 11px;
    opacity: .8;
    transition: opacity .2s ease, color .2s ease;
}

.dpc-remove span {
    font-size: 18px;
    line-height: 1;
}

.dpc-remove:hover {
    color: #9B4338 !important;
    opacity: 1;
}

.dpc-item__bottom {
    display: grid;
    grid-template-columns: minmax(95px, 1fr) auto minmax(105px, 1fr);
    gap: 18px;
    align-items: end;
    padding-top: 16px;
    border-top: 1px solid var(--dpc-line);
}

.dpc-price-block {
    display: grid;
    gap: 5px;
}

.dpc-price-block > span,
.dpc-quantity__label {
    color: var(--dpc-muted);
    font-size: 10px;
}

.dpc-price-block strong {
    color: var(--dpc-ink);
    font-size: 13px;
    font-weight: 700;
}

.dpc-price-block--subtotal {
    text-align: left;
}

.dpc-quantity {
    display: grid;
    gap: 5px;
}

.dpc-quantity__label {
    text-align: center;
}

.dpc-quantity__control {
    display: flex;
    align-items: center;
    min-height: 38px;
    overflow: hidden;
    border: 1px solid rgba(37, 77, 67, .18);
    border-radius: 999px;
    background: var(--dpc-surface);
}

.dpc-qty-btn {
    width: 34px;
    height: 36px;
    padding: 0 !important;
    display: grid;
    place-items: center;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--dpc-green) !important;
    font-size: 18px !important;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.dpc-qty-btn:hover {
    background: rgba(37, 77, 67, .08) !important;
    color: var(--dpc-gold) !important;
}

.dpc-quantity .quantity {
    margin: 0 !important;
}

.dpc-quantity input.qty {
    width: 38px !important;
    height: 36px !important;
    min-height: 0 !important;
    padding: 0 2px !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    color: var(--dpc-ink) !important;
    text-align: center;
    font-size: 13px;
    appearance: textfield;
    -moz-appearance: textfield;
}

.dpc-quantity input.qty::-webkit-inner-spin-button,
.dpc-quantity input.qty::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

.dpc-qty-static {
    min-width: 38px;
    text-align: center;
    font-size: 13px;
}

.dpc-cart-actions {
    margin-top: 18px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
}

.dpc-coupon {
    display: flex;
    flex: 1 1 420px;
    max-width: 480px;
    min-height: 46px;
    border: 1px solid var(--dpc-line);
    border-radius: 3px 14px 3px 3px;
    overflow: hidden;
    background: rgba(255,255,255,.48);
}

.dpc-coupon input {
    flex: 1;
    min-width: 0;
    padding: 0 16px !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    color: var(--dpc-ink) !important;
}

.dpc-coupon button,
.dpc-update {
    padding: 0 18px !important;
    border-radius: 0 !important;
    background: var(--dpc-green) !important;
    color: var(--dpc-cream) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: background .2s ease, opacity .2s ease;
}

.dpc-coupon button:hover,
.dpc-update:hover:not(:disabled) {
    background: var(--dpc-bg) !important;
}

.dpc-update {
    min-height: 46px;
    border-radius: 3px 14px 3px 3px !important;
}

.dpc-update:disabled {
    opacity: .36;
    cursor: default;
}

.dpc-summary {
    position: sticky;
    top: 110px;
}

.dpc-summary__card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 4px 26px 4px 4px;
    background: var(--dpc-bg);
    color: var(--dpc-cream);
    box-shadow: 0 24px 60px rgba(17, 24, 22, .12);
}

.dpc-summary__card::before {
    content: "";
    position: absolute;
    width: 230px;
    aspect-ratio: 1;
    top: -125px;
    left: -90px;
    border: 1px solid rgba(195,154,99,.1);
    border-radius: 58% 42% 63% 37% / 44% 61% 39% 56%;
    transform: rotate(32deg);
}

.dpc-summary__head {
    position: relative;
    z-index: 1;
    padding-bottom: 24px;
}

.dpc-summary__head h2 {
    color: var(--dpc-cream);
}

.dpc-summary__rows {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(238,231,219,.12);
    border-bottom: 1px solid rgba(238,231,219,.12);
    padding: 10px 0;
}

.dpc-summary__row {
    min-height: 45px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    color: rgba(238,231,219,.68);
    font-size: 12px;
}

.dpc-summary__row strong {
    color: var(--dpc-cream);
    font-size: 12px;
    font-weight: 650;
    text-align: left;
}

.dpc-summary__row small {
    display: inline-block;
    margin-right: 5px;
    color: rgba(195,154,99,.8);
}

.dpc-summary__row--discount strong {
    color: #D9B985;
}

.dpc-summary__shipping {
    color: var(--dpc-beige) !important;
    font-weight: 500 !important;
}

.dpc-summary__total {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    padding: 25px 0 22px;
}

.dpc-summary__total span {
    color: var(--dpc-beige);
    font-size: 12px;
}

.dpc-summary__total strong {
    color: var(--dpc-gold);
    font-size: 20px;
    font-weight: 700;
}

.dpc-button {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 3px 16px 3px 3px;
    font-size: 13px;
    font-weight: 750;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.dpc-button:hover {
    transform: translateY(-2px);
}

.dpc-button--gold {
    background: var(--dpc-gold);
    color: var(--dpc-bg) !important;
}

.dpc-button--gold:hover {
    background: var(--dpc-cream);
    color: var(--dpc-bg) !important;
}

.dpc-button--checkout {
    position: relative;
    z-index: 1;
    width: 100%;
}

.dpc-summary__note {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: rgba(238,231,219,.46);
    font-size: 10px;
    line-height: 1.8;
    text-align: center;
}

.dpc-mini-benefits {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.dpc-mini-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid var(--dpc-line);
    border-radius: 3px 14px 3px 3px;
    background: rgba(255,255,255,.4);
}

.dpc-mini-benefit__icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(37,77,67,.08);
    color: var(--dpc-green);
}

.dpc-mini-benefit__icon svg {
    width: 19px;
    height: 19px;
}

.dpc-mini-benefit div {
    display: grid;
    gap: 2px;
}

.dpc-mini-benefit strong {
    font-size: 11px;
}

.dpc-mini-benefit span:not(.dpc-mini-benefit__icon) {
    color: var(--dpc-muted);
    font-size: 9px;
}

.dpc-trust {
    margin-top: 72px;
    padding: 26px 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 26px;
    border-top: 1px solid rgba(195,154,99,.4);
    border-bottom: 1px solid var(--dpc-line);
}

.dpc-trust__item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.dpc-trust__number {
    color: var(--dpc-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1;
}

.dpc-trust__item div {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.dpc-trust__item strong {
    font-size: 11px;
}

.dpc-trust__item span:not(.dpc-trust__number) {
    color: var(--dpc-muted);
    font-size: 9px;
    line-height: 1.7;
}

.dpc-trust__divider {
    width: 1px;
    height: 34px;
    background: var(--dpc-line);
}

.dpc-cross {
    margin-top: 72px;
}

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

.dpc-cross-card {
    min-width: 0;
    border-bottom: 1px solid var(--dpc-line);
}

.dpc-cross-card__media {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 3px 18px 3px 3px;
    background: #E4DBCD;
}

.dpc-cross-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.22,1,.36,1);
}

.dpc-cross-card:hover .dpc-cross-card__media img {
    transform: scale(1.04);
}

.dpc-cross-card__body {
    display: grid;
    gap: 6px;
    padding: 13px 3px 15px;
}

.dpc-cross-card__title {
    overflow: hidden;
    color: var(--dpc-ink);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dpc-cross-card__price {
    color: var(--dpc-green);
    font-size: 11px;
    font-weight: 650;
}

/* Empty cart */
.dpc-empty {
    max-width: 680px;
    margin: 20px auto;
    padding: 44px 30px 30px;
    text-align: center;
}

.dpc-empty__instrument {
    position: relative;
    width: 128px;
    aspect-ratio: 1;
    margin: 0 auto 28px;
    border: 1px solid rgba(37,77,67,.18);
    border-radius: 50%;
}

.dpc-empty__ring {
    position: absolute;
    inset: 13px;
    border: 1px solid rgba(195,154,99,.9);
    border-radius: 50%;
}

.dpc-empty__ring::before,
.dpc-empty__ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--dpc-gold);
}

.dpc-empty__ring::before {
    width: 5px;
    height: 5px;
    top: 23%;
    left: -3px;
}

.dpc-empty__ring::after {
    width: 4px;
    height: 4px;
    bottom: 20%;
    right: -2px;
}

.dpc-empty__dot {
    position: absolute;
    inset: 43%;
    border-radius: 50%;
    background: var(--dpc-green);
    box-shadow: 0 0 0 10px rgba(37,77,67,.08);
}

.dpc-empty h2 {
    margin: 8px 0 10px;
    font-size: clamp(26px, 4vw, 40px);
    color: var(--dpc-ink);
}

.dpc-empty p {
    max-width: 460px;
    margin: 0 auto 25px;
    color: var(--dpc-muted);
    font-size: 13px;
    line-height: 1.9;
}

.dpc-empty .dpc-button {
    min-width: 190px;
}

/* Woo notices */
.dpc-notices .woocommerce-message,
.dpc-notices .woocommerce-error,
.dpc-notices .woocommerce-info {
    margin: 0 0 22px !important;
    padding: 14px 18px !important;
    border: 1px solid var(--dpc-line) !important;
    border-top: 0 !important;
    border-radius: 3px 14px 3px 3px !important;
    background: rgba(255,255,255,.55) !important;
    color: var(--dpc-ink) !important;
    font-size: 12px !important;
    list-style: none !important;
}

.dpc-notices .woocommerce-message::before,
.dpc-notices .woocommerce-error::before,
.dpc-notices .woocommerce-info::before {
    display: none !important;
}

@media (max-width: 1024px) {
    .dpc-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 28px;
    }

    .dpc-item {
        grid-template-columns: 135px minmax(0, 1fr);
        gap: 16px;
    }

    .dpc-item__bottom {
        grid-template-columns: 1fr auto;
    }

    .dpc-price-block--subtotal {
        display: none;
    }

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

@media (max-width: 820px) {
    .dpc-shell,
    .dpc-hero__inner {
        width: min(100% - 30px, 720px);
    }

    .dpc-shell {
        padding-top: 42px;
        padding-bottom: 60px;
    }

    .dpc-hero,
    .dpc-hero__inner {
        min-height: 210px;
    }

    .dpc-hero__inner {
        padding: 48px 0 38px;
    }

    .dpc-layout {
        display: block;
    }

    .dpc-summary {
        position: static;
        margin-top: 34px;
    }

    .dpc-cart-actions {
        flex-wrap: wrap;
    }

    .dpc-coupon {
        max-width: none;
        flex-basis: 100%;
    }

    .dpc-update {
        width: 100%;
    }

    .dpc-trust {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-inline: 4px;
    }

    .dpc-trust__divider {
        width: 100%;
        height: 1px;
    }

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

@media (max-width: 560px) {
    .dpc-shell,
    .dpc-hero__inner {
        width: calc(100% - 24px);
    }

    .dpc-hero,
    .dpc-hero__inner {
        min-height: 180px;
    }

    .dpc-hero__inner {
        align-items: flex-end;
        padding: 38px 4px 30px;
    }

    .dpc-hero__count span {
        display: none;
    }

    .dpc-hero__ornament--one {
        right: -175px;
        top: -195px;
    }

    .dpc-section-head {
        align-items: flex-start;
    }

    .dpc-item {
        grid-template-columns: 96px minmax(0, 1fr);
        padding: 11px;
        gap: 12px;
        border-radius: 3px 16px 3px 3px;
    }

    .dpc-item__media {
        border-radius: 2px 11px 2px 2px;
    }

    .dpc-item__body {
        gap: 14px;
        padding-top: 2px;
    }

    .dpc-item__kicker {
        display: none;
    }

    .dpc-item__title {
        margin-top: 0;
        font-size: 14px;
        line-height: 1.55;
    }

    .dpc-remove {
        font-size: 0;
    }

    .dpc-remove span {
        font-size: 20px;
    }

    .dpc-item__bottom {
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding-top: 10px;
    }

    .dpc-price-block > span,
    .dpc-quantity__label {
        display: none;
    }

    .dpc-price-block strong {
        font-size: 11px;
    }

    .dpc-summary__card {
        padding: 24px 20px;
        border-radius: 3px 20px 3px 3px;
    }

    .dpc-cross {
        margin-top: 55px;
    }

    .dpc-cross__grid {
        gap: 10px;
    }

    .dpc-cross-card__title,
    .dpc-cross-card__price {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dpc-page *,
    .dpc-page *::before,
    .dpc-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
