
:root {
    --velora-cart-width: 420px;
    --velora-cart-bg: #F4EFE9;
    --velora-cart-primary: #4A3A31;
    --velora-cart-secondary: #827168;
    --velora-cart-border: #DED4CC;
    --velora-cart-panel: #FBF8F4;
    --velora-cart-soft: #A39389;
    --velora-cart-overlay: rgba(44, 34, 29, 0.58);
}

.velora-cart-drawer,
.velora-cart-drawer *,
.velora-cart-page,
.velora-cart-page * {
    box-sizing: border-box;
}

html.velora-cart-lock,
body.velora-cart-lock {
    overflow: hidden !important;
}

.velora-cart-drawer {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483000 !important;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear .56s;
}

.velora-cart-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.velora-cart-backdrop {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--velora-cart-overlay) !important;
    box-shadow: none !important;
    opacity: 0;
    cursor: pointer;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition: opacity .42s cubic-bezier(.22,1,.36,1);
}

.velora-cart-drawer.is-open .velora-cart-backdrop {
    opacity: 1;
}

.velora-cart-panel {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: min(var(--velora-cart-width), 100vw) !important;
    height: 100vh !important;
    height: 100dvh !important;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--velora-cart-bg) !important;
    box-shadow: -10px 0 34px rgba(44,34,29,.10) !important;
    transform: translate3d(100%,0,0);
    will-change: transform;
    backface-visibility: hidden;
    transition: transform .56s cubic-bezier(.16,1,.30,1);
}

.velora-cart-drawer.is-open .velora-cart-panel {
    transform: translate3d(0,0,0);
}

.velora-cart-header {
    flex: 0 0 auto;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid var(--velora-cart-border);
    background: var(--velora-cart-bg) !important;
}

.velora-cart-header-title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.velora-cart-header-title {
    color: var(--velora-cart-primary);
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: .3px;
}

.velora-cart-header-count {
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--velora-cart-primary);
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 20px;
}

.velora-cart-header-count.is-zero {
    display: none;
}

.velora-cart-close {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 -8px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--velora-cart-primary) !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: transform .25s ease, opacity .2s ease;
}

.velora-cart-close:hover {
    transform: rotate(90deg);
    opacity: .7;
    background: transparent !important;
}

.velora-cart-drawer-content {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--velora-cart-bg);
}

.velora-cart-drawer-content.is-loading,
.velora-cart-page-content.is-loading {
    pointer-events: none;
    opacity: .64;
}

.velora-cart-empty {
    min-height: calc(100dvh - 62px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px 80px;
}

.velora-cart-empty-inner {
    width: 100%;
    text-align: center;
}

.velora-cart-empty h2,
.velora-cart-page-empty-center h2 {
    margin: 0 0 14px;
    color: var(--velora-cart-primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.35;
}

.velora-cart-empty p,
.velora-cart-page-empty-center p {
    max-width: 340px;
    margin: 0 auto 32px;
    color: var(--velora-cart-secondary);
    font-family: Manrope, sans-serif;
    font-size: 14px;
    line-height: 22px;
}

.velora-cart-primary-cta,
.velora-cart-secondary-cta {
    width: 100%;
    min-height: 50px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 18px !important;
    border-radius: 0 !important;
    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    letter-spacing: .45px !important;
    text-align: center;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background-color .24s ease, color .24s ease, border-color .24s ease;
}

.velora-cart-primary-cta {
    border: 1px solid var(--velora-cart-primary) !important;
    background: var(--velora-cart-primary) !important;
    color: #fff !important;
}

.velora-cart-primary-cta:hover {
    background: #3D3029 !important;
    border-color: #3D3029 !important;
    color: #fff !important;
}

.velora-cart-secondary-cta {
    border: 1px solid var(--velora-cart-primary) !important;
    background: transparent !important;
    color: var(--velora-cart-primary) !important;
}

.velora-cart-secondary-cta:hover {
    background: var(--velora-cart-primary) !important;
    color: #fff !important;
}

.velora-cart-shipping-progress,
.velora-cart-shipping-note {
    flex: 0 0 auto;
    padding: 12px 24px;
    border-bottom: 1px solid var(--velora-cart-border);
    text-align: center;
    color: var(--velora-cart-primary);
    font-family: Manrope, sans-serif;
    font-size: 12px;
    line-height: 18px;
}

.velora-cart-shipping-track {
    width: 100%;
    height: 2px;
    margin-bottom: 8px;
    background: var(--velora-cart-border);
    overflow: hidden;
}

.velora-cart-shipping-track span {
    display: block;
    height: 100%;
    background: var(--velora-cart-primary);
}

.velora-cart-drawer-filled {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.velora-cart-drawer-items {
    flex: 1 1 auto;
    padding: 20px 24px 30px;
}

.velora-cart-drawer-item {
    display: grid;
    grid-template-columns: 80px minmax(0,1fr);
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--velora-cart-border);
}

.velora-cart-drawer-item:last-child {
    margin-bottom: 0;
}

.velora-cart-item-image,
.velora-cart-page-item-image {
    display: block;
    overflow: hidden;
    background: #EDE4DD;
    text-decoration: none !important;
}

.velora-cart-item-image {
    width: 80px;
    height: 96px;
}

.velora-cart-item-image img,
.velora-cart-page-item-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
}

.velora-cart-item-body {
    min-width: 0;
}

.velora-cart-item-top,
.velora-cart-page-item-title-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 12px;
    align-items: start;
}

.velora-cart-item-title,
.velora-cart-page-item-title {
    color: var(--velora-cart-primary) !important;
    font-family: Manrope, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none !important;
}

.velora-cart-item-price,
.velora-cart-item-price *,
.velora-cart-page-item-price,
.velora-cart-page-item-price * {
    color: var(--velora-cart-primary) !important;
    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.velora-cart-item-meta,
.velora-cart-page-item-meta {
    margin-top: 3px;
    color: var(--velora-cart-secondary);
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.velora-cart-item-actions,
.velora-cart-page-item-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 13px;
}

.velora-cart-quantity {
    height: 38px;
    display: grid;
    grid-template-columns: 30px 30px 30px;
    align-items: center;
    border: 1px solid var(--velora-cart-border);
    background: transparent;
}

.velora-cart-quantity button {
    width: 30px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--velora-cart-primary) !important;
    box-shadow: none !important;
    font-family: Manrope, sans-serif !important;
    font-size: 16px !important;
    line-height: 1 !important;
    cursor: pointer;
}

.velora-cart-quantity span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--velora-cart-primary);
    font-family: Manrope, sans-serif;
    font-size: 12px;
    line-height: 18px;
}

.velora-cart-remove,
.velora-cart-save-later {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--velora-cart-secondary) !important;
    box-shadow: none !important;
    font-family: Manrope, sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 18px !important;
    text-decoration: none !important;
    cursor: pointer;
}

.velora-cart-remove:hover,
.velora-cart-save-later:hover {
    color: var(--velora-cart-primary) !important;
    background: transparent !important;
}

.velora-cart-drawer-footer {
    flex: 0 0 auto;
    padding: 20px 24px 28px;
    border-top: 1px solid var(--velora-cart-border);
    background: var(--velora-cart-bg);
}

.velora-cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--velora-cart-primary);
    font-family: Manrope, sans-serif;
    font-size: 14px;
    line-height: 21px;
}

.velora-cart-subtotal-row strong,
.velora-cart-subtotal-row strong * {
    color: var(--velora-cart-primary);
    font-size: inherit;
    font-weight: 400;
}

.velora-cart-footer-note {
    margin: 7px 0 16px;
    color: var(--velora-cart-secondary);
    font-family: Manrope, sans-serif;
    font-size: 12px;
    line-height: 18px;
}

.velora-cart-drawer-footer .velora-cart-secondary-cta {
    margin-top: 12px;
}

/* HEADER BAG OPENER + COUNT */

.velora-cart-badge-host {
    position: relative !important;
}

.velora-cart-count-badge,
.velora-cart-fragment-count {
    position: absolute !important;
    top: -7px !important;
    right: -8px !important;
    z-index: 8 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 5px !important;
    border: 1px solid var(--velora-cart-bg) !important;
    border-radius: 999px !important;
    background: var(--velora-cart-primary) !important;
    color: #fff !important;
    font-family: Manrope, sans-serif !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    line-height: 16px !important;
    pointer-events: none !important;
}

.velora-cart-count-badge.is-zero,
.velora-cart-fragment-count.is-zero {
    opacity: 0 !important;
    transform: scale(.65);
}

.velora-cart-header-opener {
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--velora-cart-primary) !important;
    box-shadow: none !important;
}

.velora-cart-header-opener svg {
    width: 22px;
    height: 22px;
}

/* FULL CART PAGE */

.velora-cart-page {
    width: 100%;
    color: var(--velora-cart-primary);
    font-family: Manrope, sans-serif;
}

.velora-cart-page-shell {
    width: 100%;
}

.velora-cart-page-heading,
.velora-cart-page-empty > h1 {
    margin: 0 0 68px;
    color: var(--velora-cart-primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.05;
}

.velora-cart-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 48px;
    align-items: start;
}

.velora-cart-page-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.velora-cart-page-item {
    display: grid;
    grid-template-columns: 100px minmax(0,1fr);
    gap: 24px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--velora-cart-border);
}

.velora-cart-page-item:last-child {
    border-bottom: 0;
}

.velora-cart-page-item-image {
    width: 100px;
    height: 126px;
}

.velora-cart-page-item-title {
    font-size: 14px;
    line-height: 21px;
}

.velora-cart-page-item-meta {
    margin-top: 4px;
    font-size: 12px;
    line-height: 18px;
}

.velora-cart-page-item-price,
.velora-cart-page-item-price * {
    font-size: 14px !important;
    line-height: 21px !important;
}

.velora-cart-gift-panel {
    margin-top: 48px;
    padding: 26px;
    border: 1px solid var(--velora-cart-border);
}

.velora-cart-gift-check {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--velora-cart-primary);
    font-family: Manrope, sans-serif;
    font-size: 13px;
    line-height: 20px;
    cursor: pointer;
}

.velora-cart-gift-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.velora-cart-checkbox {
    position: relative;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border: 1px solid #AA9A91;
}

.velora-cart-gift-check input:checked + .velora-cart-checkbox::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--velora-cart-primary);
}

.velora-cart-note-label {
    display: block;
    margin-top: 18px;
}

.velora-cart-note-label textarea {
    width: 100% !important;
    min-height: 58px !important;
    resize: vertical;
    padding: 12px !important;
    border: 1px solid var(--velora-cart-border) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--velora-cart-primary) !important;
    box-shadow: none !important;
    outline: none !important;
    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    line-height: 20px !important;
}

.velora-cart-note-label textarea::placeholder {
    color: #A99A91;
    opacity: 1;
}

.velora-cart-note-label textarea:focus {
    border-color: var(--velora-cart-primary) !important;
}

.velora-cart-summary {
    position: sticky;
    top: var(--velora-cart-sticky-offset, 28px);
    max-height: calc(100vh - var(--velora-cart-sticky-offset, 28px) - 24px);
    max-height: calc(100dvh - var(--velora-cart-sticky-offset, 28px) - 24px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #CFC2B9 transparent;
    padding: 30px 28px;
    border: 1px solid var(--velora-cart-border);
    background: var(--velora-cart-panel);
}

.velora-cart-summary-title {
    margin-bottom: 24px;
    color: var(--velora-cart-primary);
    font-size: 13px;
    line-height: 20px;
    letter-spacing: .75px;
}

.velora-cart-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 13px;
    color: var(--velora-cart-secondary);
    font-size: 13px;
    line-height: 20px;
}

.velora-cart-summary-row strong,
.velora-cart-summary-row strong * {
    color: var(--velora-cart-primary);
    font-size: inherit;
    font-weight: 400;
    text-align: right;
}

.velora-cart-summary-row--discount strong {
    color: var(--velora-cart-primary);
}

.velora-cart-summary-divider {
    height: 1px;
    margin: 20px 0;
    background: var(--velora-cart-border);
}

.velora-cart-summary-total {
    margin-bottom: 24px;
    color: var(--velora-cart-primary);
    font-size: 15px;
    line-height: 22px;
}

.velora-cart-summary-total strong,
.velora-cart-summary-total strong * {
    font-size: 15px;
}

.velora-cart-coupon-form {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 8px;
    margin-bottom: 12px;
}

.velora-cart-coupon-form input {
    min-width: 0;
    height: 44px;
    padding: 10px 12px !important;
    border: 1px solid var(--velora-cart-border) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--velora-cart-primary) !important;
    box-shadow: none !important;
    outline: 0 !important;
    font-family: Manrope, sans-serif !important;
    font-size: 12px !important;
}

.velora-cart-coupon-form input:focus {
    border-color: var(--velora-cart-primary) !important;
}

.velora-cart-coupon-form button {
    min-width: 72px !important;
    height: 44px !important;
    padding: 0 14px !important;
    border: 1px solid var(--velora-cart-primary) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--velora-cart-primary) !important;
    box-shadow: none !important;
    font-family: Manrope, sans-serif !important;
    font-size: 11px !important;
    letter-spacing: .45px !important;
    cursor: pointer;
}

.velora-cart-coupon-form button:hover {
    background: var(--velora-cart-primary) !important;
    color: #fff !important;
}

.velora-cart-coupons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -8px 0 14px;
}

.velora-cart-coupon-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid var(--velora-cart-border);
    color: var(--velora-cart-primary);
    font-size: 10px;
    line-height: 14px;
}

.velora-cart-coupon-chip button {
    width: 16px !important;
    height: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--velora-cart-secondary) !important;
    box-shadow: none !important;
    cursor: pointer;
}

.velora-cart-coupon-message {
    min-height: 18px;
    margin: -3px 0 10px;
    color: var(--velora-cart-secondary);
    font-size: 11px;
    line-height: 16px;
}

.velora-cart-summary .velora-cart-primary-cta {
    margin-top: 6px;
}

.velora-cart-secure-note {
    margin-top: 18px;
    color: var(--velora-cart-secondary);
    font-size: 11px;
    line-height: 17px;
    text-align: center;
}

.velora-cart-page-empty-center {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.velora-cart-page-empty-center .velora-cart-primary-cta {
    max-width: 360px;
}

@media (max-width: 1024px) {
    .velora-cart-page-heading,
    .velora-cart-page-empty > h1 {
        margin-bottom: 48px;
    }

    .velora-cart-page-grid {
        grid-template-columns: minmax(0,1fr) 330px;
        gap: 30px;
    }

    .velora-cart-summary {
        padding: 26px 22px;
    }
}

@media (max-width: 820px) {
    .velora-cart-page-grid {
        grid-template-columns: 1fr;
    }

    .velora-cart-summary {
        position: static;
    }
}

@media (max-width: 767px) {
    :root {
        --velora-cart-width: 390px;
    }

    .velora-cart-header {
        min-height: 60px;
        padding: 0 20px;
    }

    .velora-cart-empty {
        min-height: calc(100dvh - 60px);
        padding: 36px 28px 70px;
    }

    .velora-cart-drawer-items {
        padding: 20px 20px 26px;
    }

    .velora-cart-drawer-footer {
        padding: 18px 20px 24px;
    }

    .velora-cart-page-heading,
    .velora-cart-page-empty > h1 {
        margin-bottom: 34px;
        font-size: 40px;
    }

    .velora-cart-page-item {
        grid-template-columns: 88px minmax(0,1fr);
        gap: 16px;
    }

    .velora-cart-page-item-image {
        width: 88px;
        height: 112px;
    }

    .velora-cart-page-item-title-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .velora-cart-page-item-price,
    .velora-cart-page-item-price * {
        white-space: normal;
    }

    .velora-cart-gift-panel {
        margin-top: 30px;
        padding: 20px;
    }

    .velora-cart-summary {
        padding: 24px 20px;
    }
}

@media (max-width: 430px) {
    .velora-cart-panel {
        width: 100vw !important;
    }

    .velora-cart-drawer-item {
        grid-template-columns: 74px minmax(0,1fr);
        gap: 13px;
    }

    .velora-cart-item-image {
        width: 74px;
        height: 92px;
    }

    .velora-cart-item-top {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .velora-cart-item-price,
    .velora-cart-item-price * {
        white-space: normal;
    }

    .velora-cart-item-actions {
        gap: 12px;
    }

    .velora-cart-coupon-form {
        grid-template-columns: minmax(0,1fr) 68px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .velora-cart-drawer,
    .velora-cart-backdrop,
    .velora-cart-panel {
        transition-duration: .01ms !important;
        transition-delay: 0s !important;
    }
}


/* =========================================================
   VELORA WOOCOMMERCE NOTICES
   ========================================================= */

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

.woocommerce-notices-wrapper:empty {
    display: none;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    min-height: 58px !important;
    margin: 0 0 12px !important;
    padding: 14px 16px 14px 52px !important;
    border: 1px solid #DED4CC !important;
    border-top: 1px solid #DED4CC !important;
    border-radius: 0 !important;
    background: #F8F4EF !important;
    color: #4A3A31 !important;
    box-shadow: none !important;
    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    list-style: none !important;
}

.woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce-notices-wrapper .woocommerce-info::before,
.woocommerce-notices-wrapper .woocommerce-error::before {
    position: absolute !important;
    top: 50% !important;
    left: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    transform: translateY(-50%) !important;
    border-radius: 50% !important;
    background: #4A3A31 !important;
    color: #FFFFFF !important;
    font-family: Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    text-align: center !important;
}

.woocommerce-notices-wrapper .woocommerce-message::before {
    content: "✓" !important;
}

.woocommerce-notices-wrapper .woocommerce-info::before {
    content: "i" !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-style: italic !important;
}

.woocommerce-notices-wrapper .woocommerce-error::before {
    content: "!" !important;
}

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

.woocommerce-notices-wrapper .woocommerce-message a,
.woocommerce-notices-wrapper .woocommerce-info a,
.woocommerce-notices-wrapper .woocommerce-error a {
    color: #4A3A31 !important;
}

.woocommerce-notices-wrapper .woocommerce-message .button,
.woocommerce-notices-wrapper .woocommerce-info .button,
.woocommerce-notices-wrapper .woocommerce-error .button,
.woocommerce-notices-wrapper .wc-forward {
    order: 2 !important;
    flex: 0 0 auto !important;
    min-height: 36px !important;
    margin: 0 0 0 auto !important;
    padding: 8px 15px !important;
    border: 1px solid #4A3A31 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #4A3A31 !important;
    box-shadow: none !important;
    font-family: Manrope, sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 18px !important;
    letter-spacing: .45px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    transition:
        background-color .22s ease,
        color .22s ease,
        border-color .22s ease !important;
}

.woocommerce-notices-wrapper .woocommerce-message .button:hover,
.woocommerce-notices-wrapper .woocommerce-info .button:hover,
.woocommerce-notices-wrapper .woocommerce-error .button:hover,
.woocommerce-notices-wrapper .wc-forward:hover {
    border-color: #4A3A31 !important;
    background: #4A3A31 !important;
    color: #FFFFFF !important;
}

.woocommerce-notices-wrapper .woocommerce-error {
    display: block !important;
    padding-left: 52px !important;
}

.woocommerce-notices-wrapper .woocommerce-error li {
    margin: 0 !important;
    padding: 0 !important;
    color: #4A3A31 !important;
}

@media (max-width: 767px) {
    .woocommerce-notices-wrapper {
        margin-bottom: 18px;
    }

    .woocommerce-notices-wrapper .woocommerce-message,
    .woocommerce-notices-wrapper .woocommerce-info,
    .woocommerce-notices-wrapper .woocommerce-error {
        align-items: flex-start !important;
        flex-wrap: wrap !important;
        gap: 10px 12px !important;
        min-height: 0 !important;
        padding: 13px 14px 13px 48px !important;
        font-size: 12px !important;
        line-height: 18px !important;
    }

    .woocommerce-notices-wrapper .woocommerce-message::before,
    .woocommerce-notices-wrapper .woocommerce-info::before,
    .woocommerce-notices-wrapper .woocommerce-error::before {
        top: 13px !important;
        left: 14px !important;
        transform: none !important;
    }

    .woocommerce-notices-wrapper .woocommerce-message .button,
    .woocommerce-notices-wrapper .woocommerce-info .button,
    .woocommerce-notices-wrapper .woocommerce-error .button,
    .woocommerce-notices-wrapper .wc-forward {
        width: 100% !important;
        margin: 2px 0 0 !important;
        justify-content: center !important;
        text-align: center !important;
    }
}


/* =========================================================
   FORCE VELORA PRODUCT-PAGE ADD-TO-CART NOTICE
   Loaded late (priority 999) to beat WooCommerce / theme / Elementor defaults.
   ========================================================= */

body.woocommerce.single-product .woocommerce-notices-wrapper,
body.single-product .woocommerce-notices-wrapper,
body.woocommerce-page .woocommerce-notices-wrapper {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 24px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.woocommerce.single-product .woocommerce-notices-wrapper > .woocommerce-message,
body.single-product .woocommerce-notices-wrapper > .woocommerce-message,
body.woocommerce-page .woocommerce-notices-wrapper > .woocommerce-message,
body.woocommerce .woocommerce-message,
body.single-product .woocommerce-message {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;

    width: 100% !important;
    min-height: 58px !important;

    margin: 0 0 14px !important;
    padding: 13px 15px 13px 52px !important;

    border: 1px solid #DED4CC !important;
    border-top: 1px solid #DED4CC !important;
    border-right: 1px solid #DED4CC !important;
    border-bottom: 1px solid #DED4CC !important;
    border-left: 1px solid #DED4CC !important;
    border-radius: 0 !important;

    background: #F8F4EF !important;
    background-color: #F8F4EF !important;
    background-image: none !important;

    color: #4A3A31 !important;

    box-shadow: none !important;
    text-shadow: none !important;

    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 20px !important;

    list-style: none !important;
}

body.woocommerce.single-product .woocommerce-notices-wrapper > .woocommerce-message::before,
body.single-product .woocommerce-notices-wrapper > .woocommerce-message::before,
body.woocommerce-page .woocommerce-notices-wrapper > .woocommerce-message::before,
body.woocommerce .woocommerce-message::before,
body.single-product .woocommerce-message::before {
    content: "✓" !important;

    position: absolute !important;
    top: 50% !important;
    left: 16px !important;

    width: 24px !important;
    height: 24px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateY(-50%) !important;

    border: 0 !important;
    border-radius: 50% !important;

    background: #4A3A31 !important;
    background-color: #4A3A31 !important;

    color: #FFFFFF !important;

    font-family: Arial, sans-serif !important;
    font-size: 13px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 24px !important;

    text-align: center !important;

    box-shadow: none !important;
}

body.woocommerce.single-product .woocommerce-notices-wrapper > .woocommerce-message::after,
body.single-product .woocommerce-notices-wrapper > .woocommerce-message::after,
body.woocommerce-page .woocommerce-notices-wrapper > .woocommerce-message::after,
body.woocommerce .woocommerce-message::after,
body.single-product .woocommerce-message::after {
    content: none !important;
    display: none !important;
}

body.woocommerce.single-product .woocommerce-message > a.button,
body.woocommerce.single-product .woocommerce-message > a.wc-forward,
body.single-product .woocommerce-message > a.button,
body.single-product .woocommerce-message > a.wc-forward,
body.woocommerce-page .woocommerce-message > a.button,
body.woocommerce-page .woocommerce-message > a.wc-forward {
    float: none !important;
    order: 2 !important;
    flex: 0 0 auto !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 92px !important;
    min-height: 36px !important;

    margin: 0 0 0 auto !important;
    padding: 8px 15px !important;

    border: 1px solid #4A3A31 !important;
    border-radius: 0 !important;

    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;

    color: #4A3A31 !important;

    box-shadow: none !important;
    text-shadow: none !important;

    font-family: Manrope, sans-serif !important;
    font-size: 11px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 18px !important;
    letter-spacing: .45px !important;

    text-decoration: none !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;

    opacity: 1 !important;
}

body.woocommerce.single-product .woocommerce-message > a.button:hover,
body.woocommerce.single-product .woocommerce-message > a.wc-forward:hover,
body.single-product .woocommerce-message > a.button:hover,
body.single-product .woocommerce-message > a.wc-forward:hover,
body.woocommerce-page .woocommerce-message > a.button:hover,
body.woocommerce-page .woocommerce-message > a.wc-forward:hover {
    border-color: #4A3A31 !important;
    background: #4A3A31 !important;
    background-color: #4A3A31 !important;
    color: #FFFFFF !important;
}

/* Remove common WooCommerce/theme decorative bars/icons. */
body.single-product .woocommerce-message {
    border-top-color: #DED4CC !important;
}

body.single-product .woocommerce-message svg,
body.single-product .woocommerce-message .wc-block-components-notice-banner__content > svg {
    display: none !important;
}

@media (max-width: 767px) {
    body.woocommerce.single-product .woocommerce-notices-wrapper > .woocommerce-message,
    body.single-product .woocommerce-notices-wrapper > .woocommerce-message,
    body.woocommerce-page .woocommerce-notices-wrapper > .woocommerce-message,
    body.woocommerce .woocommerce-message,
    body.single-product .woocommerce-message {
        align-items: flex-start !important;
        flex-wrap: wrap !important;
        gap: 10px !important;

        min-height: 0 !important;

        padding: 13px 14px 13px 48px !important;

        font-size: 12px !important;
        line-height: 18px !important;
    }

    body.woocommerce.single-product .woocommerce-notices-wrapper > .woocommerce-message::before,
    body.single-product .woocommerce-notices-wrapper > .woocommerce-message::before,
    body.woocommerce-page .woocommerce-notices-wrapper > .woocommerce-message::before,
    body.woocommerce .woocommerce-message::before,
    body.single-product .woocommerce-message::before {
        top: 13px !important;
        left: 14px !important;
        transform: none !important;
    }

    body.woocommerce.single-product .woocommerce-message > a.button,
    body.woocommerce.single-product .woocommerce-message > a.wc-forward,
    body.single-product .woocommerce-message > a.button,
    body.single-product .woocommerce-message > a.wc-forward,
    body.woocommerce-page .woocommerce-message > a.button,
    body.woocommerce-page .woocommerce-message > a.wc-forward {
        width: 100% !important;
        min-width: 0 !important;
        margin: 2px 0 0 !important;
    }
}


/* =========================================================
   CART PAGE POLISH + STICKY HEADER SAFE OFFSET — v1.3.0
   ========================================================= */

.velora-cart-page {
    --velora-cart-sticky-offset: 28px;
    font-family: Manrope, sans-serif !important;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.velora-cart-page-heading,
.velora-cart-page-empty > h1 {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
    font-size: clamp(46px, 4.2vw, 60px) !important;
    font-weight: 400 !important;
    line-height: 1.02 !important;
    letter-spacing: -.5px !important;
    color: #4A3A31 !important;
}

.velora-cart-page-item-title {
    font-family: Manrope, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 21px !important;
    letter-spacing: 0 !important;
}

.velora-cart-page-item-meta,
.velora-cart-item-meta {
    color: #827168 !important;
    font-family: Manrope, sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 18px !important;
}

.velora-cart-summary {
    z-index: 5;
    border-color: #DED4CC !important;
    background: #FBF8F4 !important;
    box-shadow: 0 8px 26px rgba(74, 58, 49, .035);
    scrollbar-gutter: stable;
}

.velora-cart-summary::-webkit-scrollbar {
    width: 5px;
}

.velora-cart-summary::-webkit-scrollbar-thumb {
    background: #CFC2B9;
    border-radius: 999px;
}

.velora-cart-summary-title {
    margin-bottom: 26px !important;
    color: #4A3A31 !important;
    font-family: Manrope, sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 18px !important;
    letter-spacing: 1.15px !important;
    text-transform: uppercase !important;
}

.velora-cart-summary-row {
    align-items: flex-start;
    color: #827168 !important;
    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
}

.velora-cart-summary-row strong,
.velora-cart-summary-row strong * {
    color: #4A3A31 !important;
    font-family: Manrope, sans-serif !important;
    font-weight: 400 !important;
}

.velora-cart-summary-total,
.velora-cart-summary-total strong,
.velora-cart-summary-total strong * {
    color: #4A3A31 !important;
    font-family: Manrope, sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
}

.velora-cart-primary-cta,
.velora-cart-secondary-cta {
    min-height: 52px !important;
    border-radius: 0 !important;
    font-family: Manrope, sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 18px !important;
    letter-spacing: .9px !important;
    text-transform: uppercase !important;
}

.velora-cart-summary .velora-cart-primary-cta {
    margin-top: 8px !important;
}

.velora-cart-coupon-form input {
    height: 46px !important;
    font-family: Manrope, sans-serif !important;
    font-size: 12px !important;
    line-height: 18px !important;
    color: #4A3A31 !important;
}

.velora-cart-coupon-form input::placeholder,
.velora-cart-note-label textarea::placeholder {
    color: #A99A91 !important;
    opacity: 1 !important;
}

.velora-cart-coupon-form button {
    min-width: 76px !important;
    height: 46px !important;
    font-family: Manrope, sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 17px !important;
    letter-spacing: .75px !important;
    text-transform: uppercase !important;
}

.velora-cart-quantity button,
.velora-cart-remove,
.velora-cart-save-later {
    -webkit-tap-highlight-color: transparent;
}

.velora-cart-remove,
.velora-cart-save-later {
    transition: color .2s ease, opacity .2s ease !important;
}

.velora-cart-remove:hover,
.velora-cart-save-later:hover {
    color: #4A3A31 !important;
    opacity: .78;
}

.velora-cart-gift-panel {
    border-color: #DED4CC !important;
    background: rgba(251,248,244,.28);
}

.velora-cart-gift-check,
.velora-cart-note-label textarea {
    font-family: Manrope, sans-serif !important;
}

@media (max-width: 820px) {
    .velora-cart-summary {
        position: static !important;
        top: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
}

@media (max-width: 767px) {
    .velora-cart-page-heading,
    .velora-cart-page-empty > h1 {
        font-size: 40px !important;
        line-height: 1.06 !important;
        letter-spacing: -.25px !important;
    }

    .velora-cart-primary-cta,
    .velora-cart-secondary-cta {
        min-height: 50px !important;
        font-size: 11.5px !important;
    }
}
