    .woocommerce span.onsale {
    background: var(--magenta);
    color: #fff;
    border-radius: 999px;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--gold-dark);
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.woocommerce-products-header {
    position: relative !important;
}

.woocommerce .woocommerce-ordering select {
    padding: 8px 12px;
}

.woocommerce div.product form.cart div.quantity {
    margin: 0 1em 1em 0;
}

.woocommerce-js .quantity input[type=number] {
    padding: .3em;
    min-height: 35px;
    border: 1px solid #D1D5DB;
    background-color: #fff;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    box-shadow: none;
    border-radius: 0;
    transition: all .2s linear;
}

.woocommerce-js div.product form.cart .button {
    padding: 10px 20px;
    margin-bottom: 1em;
}

.woocommerce-js div.product form.cart {
    margin-bottom: 0;
    zoom: 1;
}

.woocommerce-js div.product .product_meta {
    border-top: 1px solid #D1D5DB;
    padding-top: .5em;
    font-size: .9em;
    margin: 0 0 .8em;
}

.woocommerce-js div.product .product_meta .sku_wrapper {
    display: none;
}

/* =========================================
   WooCommerce My Account
   ========================================= */

body.woocommerce-account main,
body.woocommerce-cart main,
body.page-id-767 main,
body.woocommerce-checkout main {
    margin: 64px 0px;
}

.woocommerce-MyAccount-navigation {
    background: var(--ivory-deep);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(43, 15, 78, 0.06);
}


/* Remove WooCommerce default list styling */
.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* Navigation items */
.woocommerce-MyAccount-navigation li {
    margin: 0;
    padding: 0;
    border: 0;
}


/* Navigation links */
.woocommerce-MyAccount-navigation li a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 18px;

    background: transparent;
    border-bottom: 1px solid var(--line);

    text-decoration: none !important;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}


/* Remove border from last item */
.woocommerce-MyAccount-navigation li:last-child a {
    border-bottom: 0;
}


/* Hover */
.woocommerce-MyAccount-navigation li a:hover {
    background: rgba(107, 47, 160, 0.07);
    padding-left: 22px;
}


/* Active item */
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link.is-active a {
    background: var(--aubergine);
    color: var(--ivory) !important;
}


/* Active hover */
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link.is-active a:hover {
    background: var(--aubergine-deep);
    padding-left: 22px;
}


/* Logout */
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: rgba(200, 27, 114, 0.08);
}


/* =========================================
   My Account Content
   ========================================= */

/* Links inside account content */
.woocommerce-MyAccount-content a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.woocommerce-MyAccount-content tbody tr :last-child,
.woocommerce-MyAccount-content tfoot tr :last-child {
    border-right: none;
}

.woocommerce-customer-details address {
    background-color: #fbfbfb;
}

/* =========================================
   Cart Added — Toast Notification
   ========================================= */

.custom-cart-notice {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;

    display: flex;
    align-items: center;
    gap: 14px;

    background: var(--aubergine-deep);
    border: 1px solid rgba(201, 151, 31, 0.25);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(22, 7, 38, 0.55), 0 2px 8px rgba(0, 0, 0, 0.3);

    padding: 16px 18px 16px 0;
    min-width: 290px;
    max-width: 340px;

    /* Start hidden — translated below + invisible */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

/* Slide in */
.custom-cart-notice.ccn-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Slide out */
.custom-cart-notice.ccn-hiding {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.3s ease;
    pointer-events: none;
}

/* Gold accent bar on the left */
.ccn-bar {
    display: block;
    flex-shrink: 0;
    width: 4px;
    align-self: stretch;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 0 2px 2px 0;
    margin-right: 4px;
}

/* Cart icon */
.ccn-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

/* Text block */
.ccn-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.ccn-msg {
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--ivory);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ccn-msg strong {
    font-weight: 600;
    color: #fff;
}

/* View Cart link */
.ccn-link {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.ccn-link:hover {
    color: #fff;
    letter-spacing: 0.07em;
}

/* Close (×) button */
.ccn-close {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 4px 6px;
    margin-left: 4px;
    cursor: pointer;
    color: rgba(255, 251, 242, 0.4);
    font-size: 1.1rem;
    line-height: 1;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.ccn-close:hover {
    color: var(--ivory);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 921px) {
    body.woocommerce-account main,
    body.woocommerce-cart main {
        margin: 58px 0px;
    }

    .woocommerce-MyAccount-navigation {
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    body.woocommerce-account main,
    body.woocommerce-cart main {
        margin: 34px 0px;
    }

    .custom-cart-notice {
        left: 16px;
        right: 16px;
        bottom: 16px;

        width: auto;
        min-width: 0;
        max-width: none;

        padding: 14px 14px 14px 0;
        gap: 10px;
    }

    .ccn-msg {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        overflow-wrap: anywhere;
    }

    .ccn-icon {
        font-size: 1.2rem;
    }

    .ccn-close {
        margin-left: 0;
    }
    
    .woocommerce-MyAccount-navigation {
        margin-bottom: 25px;
    }
}

/* Extra-small phones */
@media (max-width: 360px) {
    .custom-cart-notice {
        left: 10px;
        right: 10px;
        bottom: 10px;

        padding-right: 10px;
        gap: 8px;
    }

    .ccn-msg {
        font-size: 0.82rem;
    }

    .ccn-link {
        font-size: 0.74rem;
    }

    .ccn-close {
        padding: 3px 5px;
    }
}

/* Single Category Page Content */
.category-detailed-description {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    color: var(--aubergine);
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

/* Headings */
.category-detailed-description h2,
.category-detailed-description h3,
.category-detailed-description h4,
.category-detailed-description h5,
.category-detailed-description h6 {
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--aubergine);
    font-family: "Cinzel", serif;
    font-weight: 600;
    line-height: 1.3;
}

.category-detailed-description h2 {
    font-size: 28px;
}

.category-detailed-description h3 {
    font-size: 22px;
}

.category-detailed-description h4 {
    font-size: 19px;
}

/* Paragraphs */
.category-detailed-description p {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--aubergine);
    line-height: 1.7;
}

.woocommerce-products-header .term-description p {
    color: var(--aubergine);
}

/* Lists */
.category-detailed-description ul,
.category-detailed-description ol {
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 24px;
}

.category-detailed-description ul {
    list-style-type: disc !important;
}

.category-detailed-description ol {
    list-style-type: decimal !important;
}

.category-detailed-description li {
    display: list-item !important;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Nested lists */
.category-detailed-description ul ul,
.category-detailed-description ol ol,
.category-detailed-description ul ol,
.category-detailed-description ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.category-detailed-description ul ul {
    list-style-type: circle !important;
}

.category-detailed-description ul ul ul {
    list-style-type: square !important;
}

/* Links */
.category-detailed-description p a,
.category-detailed-description li a,
.category-detailed-description td a,
.category-detailed-description blockquote a {
    color: var(--aubergine) !important;
    text-decoration: underline !important;
    text-decoration-color: rgba(43, 15, 78, .3) !important;
    text-underline-offset: 3px !important;
    transition: color .2s ease, text-decoration-color .2s ease !important;
}

.category-detailed-description a:hover {
    color: var(--gold) !important;
    text-decoration-color: currentColor !important;
}

/* Strong / emphasis */
.category-detailed-description strong,
.category-detailed-description b {
    color: var(--aubergine);
    font-weight: 600;
}

.category-detailed-description em,
.category-detailed-description i {
    font-style: italic;
}

/* Blockquotes */
.category-detailed-description blockquote {
    margin: 25px 0;
    padding: 15px 20px;
    border-left: 3px solid var(--gold);
    background: rgba(43, 15, 78, .04);
}

.category-detailed-description blockquote p {
    margin-bottom: 0;
}

/* Horizontal rule */
.category-detailed-description hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid rgba(43, 15, 78, .15);
}

/* Images */
.category-detailed-description img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

/* Tables */
.category-detailed-description table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.category-detailed-description th,
.category-detailed-description td {
    padding: 10px 12px;
    border: 1px solid rgba(43, 15, 78, .15);
    text-align: left;
}

.category-detailed-description th {
    font-weight: 600;
    color: var(--aubergine);
}

/* First element */
.category-detailed-description > :first-child {
    margin-top: 0;
}

/* Last element */
.category-detailed-description > :last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .category-detailed-description {
        margin-top: 35px;
        margin-bottom: 35px;
        font-size: 15px;
        line-height: 1.65;
    }

    .category-detailed-description h2 {
        font-size: 23px;
    }

    .category-detailed-description h3 {
        font-size: 19px;
    }

    .category-detailed-description h4 {
        font-size: 17px;
    }

    .category-detailed-description ul,
    .category-detailed-description ol {
        padding-left: 20px;
    }

    .category-detailed-description table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .category-detailed-description {
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 14px;
    }

    .category-detailed-description h2 {
        font-size: 21px;
    }

    .category-detailed-description h3 {
        font-size: 18px;
    }

    .category-detailed-description h4 {
        font-size: 16px;
    }
}

/* =========================================================
   MKARTCRAFT — WOOCOMMERCE SUCCESS NOTICE
   ========================================================= */

.single-product .woocommerce-notices-wrapper {
    width: 100%;
    margin: 0 auto 24px;
}

.single-product .woocommerce-notices-wrapper .woocommerce-message {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;

    width: 100%;
    box-sizing: border-box;

    background: var(--ivory-deep);

    border: 1px solid var(--line);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 12px 12px;

    color: var(--ink);

    font-family: 'Jost', sans-serif;
    font-weight: 400;
    line-height: 1.5;

    box-shadow: 0 8px 24px rgba(43, 15, 78, 0.06);
}

/* WooCommerce check / success icon */

.single-product .woocommerce-notices-wrapper .woocommerce-message::before {
    font-family: WooCommerce;
    content: "\e015" !important;
    color: var(--gold) !important;
}

.single-product .woocommerce-notices-wrapper .woocommerce-message::after {
    content: none;
}

/* View cart button */

.single-product .woocommerce-notices-wrapper .wc-forward {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;
    padding: 0 18px;

    margin: 0;

    background: var(--aubergine-deep) !important;
    color: var(--ivory) !important;

    border: 0;
    border-radius: 999px;

    font-family: 'Jost', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    text-decoration: none !important;

    box-shadow: none;

    transition:
        background 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
}

.single-product .woocommerce-notices-wrapper .wc-forward:hover {
    background: var(--purple) !important;
    color: #fff !important;

    transform: translateY(-1px);

    box-shadow: 0 8px 20px rgba(43, 15, 78, 0.18);
}

.single-product .woocommerce-notices-wrapper .wc-forward:focus {
    outline: none;

    box-shadow:
        0 0 0 3px rgba(201, 151, 31, 0.16);
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .single-product .woocommerce-notices-wrapper {
        margin-bottom: 20px;
    }

    .single-product .woocommerce-notices-wrapper .woocommerce-message {
        font-size: 14px;
    }

    .single-product .woocommerce-notices-wrapper .wc-forward {
        min-height: 32px;
        padding: 0 14px;

        font-size: 10px !important;
    }
}

/* =========================================================
   MKARTCRAFT — PRODUCT SIZE / VARIATION SELECT
   ========================================================= */

.single-product .variations {
    width: 100%;
    margin: 1em 0 1em !important;
    border: 0;
    border-collapse: separate;
}

.single-product .variations tbody,
.single-product .variations tr,
.single-product .variations td,
.single-product .variations th {
    border: 0;
    background: transparent;
}

/* ---------------------------------------------------------
   SIZE LABEL
   --------------------------------------------------------- */

.single-product .variations .label {
    width: 72px;
    padding: 0 14px 0 0;
    vertical-align: middle;
    text-align: left;
}

.single-product .variations .label label {
    display: inline-block;
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--ink);
    vertical-align: bottom;
}

/* ---------------------------------------------------------
   SELECT WRAPPER
   --------------------------------------------------------- */

.single-product .variations .value {
    position: relative;
    width: 100%;
    padding: 0;
}

/* ---------------------------------------------------------
   SIZE SELECT
   --------------------------------------------------------- */

.single-product .variations select {
    appearance: none !important;
    -webkit-appearance: none !important;

    display: block;
    width: 100%;
    max-width: 176px !important;
    min-width: 0 !important;
    height: 44px;

    margin: 0;
    padding: 0 42px 0 15px;

    border: 1px solid var(--line) !important;
    border-radius: 12px !important;

    background-color: #fff !important;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%232b0f4e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;

    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink);

    cursor: pointer;

    outline: none;

    box-shadow: none !important;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.single-product .variations select:hover {
    border-color: var(--purple) !important;
    background-color: var(--ivory) !important;
}

.single-product .variations select:focus {
    border-color: var(--gold) !important;

    background-color: var(--ivory) !important;

    box-shadow:
        0 0 0 3px rgba(201, 151, 31, 0.12) !important;
}

/* Dropdown options */

.single-product .variations select option {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: var(--ink);
    background: #fff;
}

/* ---------------------------------------------------------
   CLEAR LINK
   --------------------------------------------------------- */

.single-product .variations .reset_variations {
    display: inline-block;

    margin: 0 0 0 10px;

    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;

    color: var(--ink-soft);

    text-decoration: underline !important;
    text-underline-offset: 2px;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.single-product .variations .reset_variations:hover {
    color: var(--magenta) !important;
}

/* ---------------------------------------------------------
   VARIATION PRICE
   --------------------------------------------------------- */

.single-product .woocommerce-variation-price {
    margin: 4px 0 8px;
}

.single-product .woocommerce-variation-price .price {
    margin: 0;
    color: var(--gold-dark) !important;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .single-product .variations {
        margin-bottom: 12px;
    }

    .single-product .variations .label {
        width: 64px;
        padding-right: 10px;
    }

    .single-product .variations select {
        max-width: none;
        width: 100%;
        height: 46px;
        padding-left: 14px;
        padding-right: 40px;
        font-size: 13px;
    }

    .single-product .variations .reset_variations {
        margin-left: 7px;
        font-size: 10.5px;
    }
}

/* ---------------------------------------------------------
   VERY SMALL SCREENS
   --------------------------------------------------------- */

@media (max-width: 380px) {

    .single-product .variations .label {
        width: 58px;
    }

    .single-product .variations select {
        height: 44px;
        font-size: 12px;
    }
}