/* ============================================================
   Cynosure Titli — WooCommerce Brand Overrides
   Rounded, premium feel. Blingon/CrunchyFashion inspired.
   ============================================================ */

/* ── Shop page layout ────────────────────────────────────────── */

/* Hide Blocksy's default header on shop/category pages (we have our own) */
.woocommerce-shop .hero-section,
.tax-product_cat .hero-section,
.woocommerce-shop .woocommerce-products-header,
.tax-product_cat .woocommerce-products-header,
.woocommerce-shop .woo-listing-top,
.tax-product_cat .woo-listing-top {
    display: none !important;
}

/* Hide Blocksy default header/footer on shop archive (we use custom) */
.woocommerce-shop #ct-main > *:not(#ct-shop),
.tax-product_cat #ct-main > *:not(#ct-shop) {
    /* Keep only our custom shop template */
}

/* Scrollbar hide for filter tabs */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Sorting dropdown */
.woocommerce-ordering {
    margin: 0 !important;
}
.woocommerce-ordering select {
    border: 1px solid #e5e5e5 !important;
    border-radius: 10px !important;
    padding: 0.6rem 2.5rem 0.6rem 1rem !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #0a0a0a !important;
    background: #fff !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    cursor: pointer !important;
    transition: border-color 0.25s !important;
}
.woocommerce-ordering select:focus {
    border-color: #0a0a0a !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(10,10,10,0.06) !important;
}

/* Result count */
.woocommerce-result-count {
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #999 !important;
    margin: 0 !important;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
    margin: 0 !important;
    border: none !important;
}
.woocommerce nav.woocommerce-pagination ul {
    display: flex !important;
    gap: 0.5rem !important;
    justify-content: center !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: #0a0a0a !important;
    background: #fff !important;
    border: 1px solid #e5e5e5 !important;
    transition: all 0.25s !important;
    text-decoration: none !important;
    padding: 0 !important;
    min-width: auto !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #0a0a0a !important;
    color: #fff !important;
    border-color: #0a0a0a !important;
    transform: translateY(-1px) !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #0a0a0a !important;
    color: #fff !important;
    border-color: #0a0a0a !important;
}

/* ── Shop archive / product grid ─────────────────────────────── */

/* Grid layout — override Blocksy's var(--shop-columns) grid system */
ul.products,
ul.products.columns-4,
.woocommerce ul.products,
[data-products],
[data-products].columns-4,
[data-products="type-1"] {
    display: grid !important;
    --shop-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    --grid-columns-gap: 1.5rem !important;
    --grid-rows-gap: 1.5rem !important;
    grid-column-gap: 1.5rem !important;
    grid-row-gap: 1.5rem !important;
    gap: 1.5rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure product cards take full grid cell width */
ul.products li.product,
ul.products.columns-4 li.product,
[data-products] > *,
[data-products] .product {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    float: none !important;
}

/* Product card */
ul.products li.product,
.woocommerce ul.products li.product,
[data-products] .product {
    background: #fff !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    overflow: hidden !important;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
                box-shadow 0.4s cubic-bezier(0.25,0.46,0.45,0.94) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}
ul.products li.product:hover,
[data-products] .product:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06) !important;
}

/* Image container (Blocksy figure + ct-media-container) */
ul.products li.product figure,
ul.products li.product > figure,
[data-products] .product figure {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
    position: relative !important;
    background: #efeee9 !important;
    flex-shrink: 0 !important;
}
ul.products li.product figure .ct-media-container,
[data-products] .product figure .ct-media-container {
    display: block !important;
    overflow: hidden !important;
    aspect-ratio: 1 / 1 !important;
}
ul.products li.product img,
ul.products li.product figure img,
[data-products] .product figure img,
ul.products li.product figure .ct-media-container img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94) !important;
    display: block !important;
}
ul.products li.product:hover img,
[data-products] .product:hover img { transform: scale(1.08) !important; }

/* Product info area — everything below the image */
ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h2.woocommerce-loop-product__title,
ul.products li.product .price,
ul.products li.product .entry-meta,
ul.products li.product ul.entry-meta {
    padding-left: 1.1rem !important;
    padding-right: 1.1rem !important;
}

/* Product title */
ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h2.woocommerce-loop-product__title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #0a0a0a !important;
    padding-top: 0.9rem !important;
    padding-bottom: 0.15rem !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
ul.products li.product .woocommerce-loop-product__title a,
ul.products li.product h2 a {
    color: #0a0a0a !important;
    text-decoration: none !important;
    transition: color 0.25s !important;
}
ul.products li.product:hover .woocommerce-loop-product__title a,
ul.products li.product:hover h2 a {
    color: #6b6b6b !important;
}

/* Category meta (Blocksy entry-meta) — show ABOVE price */
ul.products li.product .entry-meta,
ul.products li.product ul.entry-meta {
    margin: 0.2rem 0 0 !important;
    list-style: none !important;
    order: -1 !important;
}
ul.products li.product .entry-meta a {
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.62rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #999 !important;
    text-decoration: none !important;
    transition: color 0.25s !important;
}
ul.products li.product .entry-meta a:hover {
    color: #0a0a0a !important;
}

/* Price */
ul.products li.product .price {
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #0a0a0a !important;
    padding-top: 0.2rem !important;
    padding-bottom: 0.6rem !important;
    margin: 0 !important;
}
ul.products li.product .price del {
    color: #d4d4d4 !important;
    font-weight: 400 !important;
    font-size: 0.85em !important;
}
ul.products li.product .price ins {
    text-decoration: none !important;
    color: #0a0a0a !important;
}

/* Add to cart button area (Blocksy ct-woo-card-actions) */
ul.products li.product .ct-woo-card-actions,
ul.products li.product div.ct-woo-card-actions,
[data-products] .product .ct-woo-card-actions {
    padding: 0 0.9rem 0.9rem !important;
    margin-top: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.4rem !important;
}
ul.products li.product .ct-woo-card-actions .button,
ul.products li.product .ct-woo-card-actions .add_to_cart_button,
ul.products li.product .ct-woo-card-actions a,
[data-products] .product .ct-woo-card-actions .button,
[data-products] .product .ct-woo-card-actions a {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0.75rem 1rem !important;
    background: #0a0a0a !important;
    color: #fff !important;
    border: 2px solid #0a0a0a !important;
    border-radius: 10px !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94) !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
}
ul.products li.product .ct-woo-card-actions .button:hover,
ul.products li.product .ct-woo-card-actions a:hover,
[data-products] .product .ct-woo-card-actions .button:hover {
    background: #fff !important;
    color: #0a0a0a !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

/* "View cart" button after AJAX add — style as outline (global) */
a.added_to_cart,
.added_to_cart,
ul.products li.product .added_to_cart,
ul.products li.product .ct-woo-card-actions .added_to_cart,
[data-products] .product .added_to_cart {
    display: block !important;
    width: 100% !important;
    margin: 0.4rem 0 0 !important;
    padding: 0.65rem 1rem !important;
    background: transparent !important;
    color: #0a0a0a !important;
    border: 2px solid #0a0a0a !important;
    border-radius: 10px !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    box-sizing: border-box !important;
}
a.added_to_cart:hover,
.added_to_cart:hover,
ul.products li.product .added_to_cart:hover,
[data-products] .product .added_to_cart:hover {
    background: #0a0a0a !important;
    color: #fff !important;
}

/* Hide Blocksy screen-reader spans in card actions */
ul.products li.product .ct-woo-card-actions .screen-reader-text,
[data-products] .product .ct-woo-card-actions .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
}

/* Loop WhatsApp icon overlay */
.ct-loop-wa {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 38px;
    height: 38px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7) translateY(4px);
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(37,211,102,0.35);
    text-decoration: none;
}
.ct-loop-wa svg { width: 17px; height: 17px; }
ul.products li.product:hover .ct-loop-wa {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Sale badge */
.woocommerce span.onsale,
ul.products li.product span.onsale {
    position: absolute !important;
    background: #0a0a0a !important;
    color: #fff !important;
    font-family: 'Mulish', sans-serif !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    min-width: auto !important;
    min-height: auto !important;
    padding: 0.35rem 0.8rem !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.15em !important;
    top: 0.75rem !important;
    left: 0.75rem !important;
    right: auto !important;
    line-height: 1.5 !important;
    text-transform: uppercase !important;
    z-index: 2 !important;
}

/* Blocksy data-products grid override */
[data-products],
[data-products="type-1"] {
    --shop-columns: repeat(4, minmax(0, 1fr)) !important;
    --grid-columns-gap: 1.5rem !important;
    --grid-rows-gap: 1.5rem !important;
}
[data-products] .product figure {
    --product-element-spacing: 0 !important;
}

/* Force override Blocksy inline aspect-ratio on images */
ul.products li.product img[style*="aspect-ratio"],
[data-products] .product img[style*="aspect-ratio"] {
    aspect-ratio: 1 / 1 !important;
}

/* ── Single product ──────────────────────────────────────────── */
.single-product .product_title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
    font-weight: 500 !important;
    color: #0a0a0a !important;
    line-height: 1.2 !important;
}

.single-product .price {
    font-family: 'Mulish', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1c1c;
}
.single-product .price del { color: #d4d4d4; font-size: 0.8em; font-weight: 400; }
.single-product .price ins { text-decoration: none; }

.single_add_to_cart_button.button {
    background: #0a0a0a !important;
    color: #fff !important;
    border: 2px solid #0a0a0a !important;
    border-radius: 8px !important;
    font-family: 'Mulish', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 0.9rem 2.5rem !important;
    font-size: 0.85rem !important;
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94) !important;
}
.single_add_to_cart_button.button:hover {
    background: #fff !important;
    color: #0a0a0a !important;
}

/* Variations / forms */
.variations select,
.quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-family: 'Mulish', sans-serif;
    padding: 0.65rem 1rem;
    transition: border-color 0.3s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus,
.variations select:focus,
.quantity .qty:focus {
    border-color: #0a0a0a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}

/* Tabs */
.woocommerce-tabs ul.tabs {
    border-bottom: 1px solid #f0f0f0;
    padding: 0;
    list-style: none;
    display: flex;
}
.woocommerce-tabs ul.tabs li { margin: 0; border: none; }
.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.3s, border-color 0.3s;
}
.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: #0a0a0a;
    border-bottom-color: #0a0a0a;
}

/* ── Global WooCommerce buttons ─────────────────────────────── */
.woocommerce .button,
.woocommerce .button.alt,
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce input.button,
.woocommerce input.button.alt,
.woocommerce a.button,
.woocommerce a.button.alt,
.woocommerce #respond input#submit,
.woocommerce #respond input#submit.alt,
.wc-proceed-to-checkout .button,
.wc-proceed-to-checkout .checkout-button,
#place_order,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.wp-element-button,
.wc-block-components-button {
    background: #0a0a0a !important;
    color: #fff !important;
    border: 2px solid #0a0a0a !important;
    border-radius: 8px !important;
    font-family: 'Mulish', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 0.85rem 1.8rem !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94) !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    line-height: 1.4 !important;
}
.woocommerce .button:hover,
.woocommerce .button.alt:hover,
.woocommerce button.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce #respond input#submit:hover,
.wc-proceed-to-checkout .button:hover,
.wc-proceed-to-checkout .checkout-button:hover,
#place_order:hover,
.wp-element-button:hover,
.wc-block-components-button:hover {
    background: #fff !important;
    color: #0a0a0a !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Disabled state */
.woocommerce .button:disabled,
.woocommerce .button[disabled],
.woocommerce button.button:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Cart update + coupon buttons — slightly smaller */
.woocommerce-cart table.cart td.actions .button,
.woocommerce-cart .coupon .button {
    padding: 0.7rem 1.5rem !important;
    font-size: 0.72rem !important;
}

/* Remove item (x) button in cart */
.woocommerce a.remove {
    color: #999 !important;
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: 1px solid #e5e5e5 !important;
    transition: all 0.25s !important;
    text-decoration: none !important;
}
.woocommerce a.remove:hover {
    background: #0a0a0a !important;
    color: #fff !important;
    border-color: #0a0a0a !important;
}

/* Cart table styling */
.woocommerce-cart table.cart,
.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
    border-color: #f0f0f0 !important;
    font-family: 'Mulish', sans-serif;
}
.woocommerce-cart table.cart th {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #999 !important;
    background: #f7f7f7 !important;
    padding: 1rem !important;
}
.woocommerce-cart table.cart td {
    padding: 1rem !important;
    vertical-align: middle !important;
}
.woocommerce-cart table.cart img {
    width: 72px !important;
    border-radius: 8px !important;
}
.woocommerce-cart table.cart .product-name a {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: #1c1c1c !important;
    text-decoration: none !important;
}
.woocommerce-cart table.cart .product-name a:hover {
    color: #6b6b6b !important;
}

/* Cart totals box */
.woocommerce-cart .cart_totals {
    border: 1px solid #f0f0f0 !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    background: #f7f7f7 !important;
}
.woocommerce-cart .cart_totals h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: #0a0a0a !important;
    margin-bottom: 1rem !important;
}
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    font-family: 'Mulish', sans-serif !important;
    border-color: #e5e5e5 !important;
    padding: 0.75rem 0 !important;
}

/* Coupon input */
.woocommerce-cart .coupon input.input-text {
    border: 1px solid #e5e5e5 !important;
    border-radius: 8px !important;
    font-family: 'Mulish', sans-serif !important;
    padding: 0.7rem 1rem !important;
    font-size: 0.85rem !important;
    transition: border-color 0.3s !important;
}
.woocommerce-cart .coupon input.input-text:focus {
    border-color: #0a0a0a !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(10,10,10,0.06) !important;
}

/* Checkout form styling */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout #order_review_heading {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: #0a0a0a !important;
}

/* Payment methods */
.woocommerce-checkout #payment {
    background: #f7f7f7 !important;
    border-radius: 12px !important;
    border: 1px solid #f0f0f0 !important;
}
.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid #e5e5e5 !important;
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
    border-top-color: #0a0a0a !important;
    background: #f7f7f7 !important;
    color: #1c1c1c !important;
    border-radius: 8px !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.85rem !important;
}
.woocommerce-message a.button,
.woocommerce-info a.button {
    padding: 0.5rem 1.2rem !important;
    font-size: 0.7rem !important;
}
.woocommerce-error {
    border-top-color: #dc2626 !important;
    background: #fef2f2 !important;
    color: #991b1b !important;
    border-radius: 8px !important;
    font-family: 'Mulish', sans-serif !important;
}

/* My Account page */
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
}
.woocommerce-MyAccount-navigation ul li a {
    display: block !important;
    padding: 0.75rem 1rem !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    color: #6b6b6b !important;
    border-radius: 8px !important;
    transition: all 0.25s !important;
    text-decoration: none !important;
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    background: #0a0a0a !important;
    color: #fff !important;
}

/* Return to shop button */
.woocommerce .return-to-shop .button,
.woocommerce-cart .wc-empty-cart-message + .return-to-shop .button {
    padding: 0.9rem 2rem !important;
}

/* WA button area */
.ct-product-wa-wrap {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f0f0f0;
}
.ct-product-wa-wrap p { font-size: 0.85rem; color: #999; margin-bottom: 0.5rem; }

/* ── My Account: Login / Register ───────────────────────────── */

/* Center the login page content */
.woocommerce-account:not(.logged-in) .woocommerce {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 3rem 1.5rem !important;
}

/* Two-column layout */
.woocommerce-account #customer_login {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important;
    border: 1px solid #f0f0f0 !important;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .col-1 {
    padding: 3rem !important;
    background: #fff !important;
    border-right: 1px solid #f0f0f0 !important;
}

.woocommerce-account #customer_login .u-column2,
.woocommerce-account #customer_login .col-2 {
    padding: 3rem !important;
    background: #fafaf9 !important;
}

/* Section headings */
.woocommerce-account #customer_login h2 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.75rem !important;
    font-weight: 500 !important;
    color: #0a0a0a !important;
    margin-bottom: 0.5rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 2px solid #0a0a0a !important;
    display: inline-block !important;
}

/* Labels */
.woocommerce-account #customer_login label {
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    color: #6b6b6b !important;
    margin-bottom: 0.4rem !important;
    display: block !important;
}

/* Input fields */
.woocommerce-account #customer_login input.input-text,
.woocommerce-account #customer_login .woocommerce-Input {
    width: 100% !important;
    border: 1.5px solid #e5e5e5 !important;
    border-radius: 10px !important;
    padding: 0.85rem 1.1rem !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.9rem !important;
    color: #1c1c1c !important;
    background: #fff !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
    outline: none !important;
    box-sizing: border-box !important;
}
.woocommerce-account #customer_login input.input-text:focus {
    border-color: #0a0a0a !important;
    box-shadow: 0 0 0 3px rgba(10,10,10,0.06) !important;
}

/* Form rows spacing */
.woocommerce-account #customer_login .form-row {
    margin-bottom: 1.25rem !important;
    padding: 0 !important;
}

/* Remember me checkbox */
.woocommerce-account #customer_login .woocommerce-form-login__rememberme {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.82rem !important;
    color: #6b6b6b !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
}
.woocommerce-account #customer_login .woocommerce-form-login__rememberme input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    border-radius: 4px !important;
    accent-color: #0a0a0a !important;
}

/* Submit buttons */
.woocommerce-account #customer_login button[type="submit"] {
    width: 100% !important;
    padding: 0.9rem 2rem !important;
    background: #0a0a0a !important;
    color: #fff !important;
    border: 2px solid #0a0a0a !important;
    border-radius: 10px !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94) !important;
    margin-top: 0.5rem !important;
}
.woocommerce-account #customer_login button[type="submit"]:hover {
    background: #fff !important;
    color: #0a0a0a !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

/* Lost password link */
.woocommerce-account #customer_login .lost_password {
    text-align: center !important;
    margin-top: 1rem !important;
}
.woocommerce-account #customer_login .lost_password a {
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #999 !important;
    text-decoration: none !important;
    transition: color 0.25s !important;
}
.woocommerce-account #customer_login .lost_password a:hover {
    color: #0a0a0a !important;
}

/* Privacy policy text */
.woocommerce-account #customer_login .woocommerce-privacy-policy-text {
    margin-bottom: 1rem !important;
}
.woocommerce-account #customer_login .woocommerce-privacy-policy-text p {
    font-family: 'Mulish', sans-serif !important;
    font-size: 0.75rem !important;
    color: #999 !important;
    line-height: 1.6 !important;
}
.woocommerce-account #customer_login .woocommerce-privacy-policy-text a {
    color: #0a0a0a !important;
    text-decoration: underline !important;
}

/* Required asterisk */
.woocommerce-account #customer_login .required {
    color: #dc2626 !important;
}

/* Mobile: stack columns */
@media (max-width: 768px) {
    .woocommerce-account #customer_login {
        grid-template-columns: 1fr !important;
    }
    .woocommerce-account #customer_login .u-column1,
    .woocommerce-account #customer_login .col-1 {
        border-right: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        padding: 2rem 1.5rem !important;
    }
    .woocommerce-account #customer_login .u-column2,
    .woocommerce-account #customer_login .col-2 {
        padding: 2rem 1.5rem !important;
    }
}

/* ── Responsive ─────────────────────────────────────────────── */

/* Tablet: 3 columns */
@media (max-width: 1024px) {
    ul.products,
    ul.products.columns-4,
    .woocommerce ul.products,
    [data-products],
    [data-products].columns-4,
    [data-products="type-1"] {
        --shop-columns: repeat(3, minmax(0, 1fr)) !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 1rem !important;
    }
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
    ul.products,
    ul.products.columns-4,
    .woocommerce ul.products,
    [data-products],
    [data-products].columns-4,
    [data-products="type-1"] {
        --shop-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem !important;
    }
    ul.products li.product,
    [data-products] .product {
        border-radius: 12px !important;
    }
    ul.products li.product figure,
    [data-products] .product figure {
        border-radius: 12px 12px 0 0 !important;
    }
    ul.products li.product .woocommerce-loop-product__title,
    ul.products li.product h2.woocommerce-loop-product__title {
        font-size: 0.82rem !important;
        padding: 0.6rem 0.6rem 0.1rem !important;
        -webkit-line-clamp: 2 !important;
    }
    ul.products li.product .price {
        padding: 0.15rem 0.6rem 0.35rem !important;
        font-size: 0.78rem !important;
    }
    ul.products li.product .entry-meta,
    ul.products li.product ul.entry-meta {
        padding: 0 0.6rem !important;
        margin: 0.1rem 0 0 !important;
    }
    ul.products li.product .entry-meta a {
        font-size: 0.5rem !important;
        letter-spacing: 0.08em !important;
    }
    ul.products li.product .ct-woo-card-actions {
        padding: 0 0.5rem 0.5rem !important;
    }
    ul.products li.product .ct-woo-card-actions .button,
    ul.products li.product .ct-woo-card-actions a {
        padding: 0.5rem 0.4rem !important;
        font-size: 0.55rem !important;
        border-radius: 8px !important;
        border-width: 1.5px !important;
    }
    ul.products li.product .added_to_cart {
        padding: 0.4rem 0.4rem !important;
        font-size: 0.5rem !important;
    }
    ul.products li.product:hover {
        transform: translateY(-4px) !important;
    }
    /* Cart responsive */
    .woocommerce-cart table.cart img {
        width: 56px !important;
    }
}

/* ── Product Add-Ons: subtotal / add-ons / total block ────────────────── */
.single-product .zaddon_data {
	text-align: left;
	margin: 1.5rem 0;
	padding: 1.1rem 1.35rem;
	background: #f7f7f7;
	border: 1px solid #ececec;
	border-radius: 16px;
	max-width: 100%;
	float: none;
}
.single-product .zaddon_data > div {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.35rem 0;
	margin: 0;
}
.single-product .zaddon_data h4 {
	margin: 0;
	padding: 0;
	font-family: 'Mulish', system-ui, sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6b6b6b;
	line-height: 1.4;
}
.single-product .zaddon_data .woocommerce-Price-amount,
.single-product .zaddon_data .amount,
.single-product .zaddon_data p {
	margin: 0;
	font-weight: 700;
	color: #0a0a0a;
	font-size: 0.95rem;
	white-space: nowrap;
}
.single-product .zaddon_data .zaddon_additional .woocommerce-Price-amount { color: #6b6b6b; }
.single-product .zaddon_data .zaddon_total {
	margin-top: 0.4rem;
	padding-top: 0.85rem;
	border-top: 1px solid #e2e2e2;
}
.single-product .zaddon_data .zaddon_total h4 {
	color: #0a0a0a;
	font-size: 0.8rem;
}
.single-product .zaddon_data .zaddon_total .woocommerce-Price-amount {
	font-size: 1.2rem;
	color: #0a0a0a;
}


/* ═══════════════════════════════════════════════════════════════════════
   MY ACCOUNT — clean, premium forms (edit account, addresses)
   ═══════════════════════════════════════════════════════════════════════ */

/* Form wrapper as a soft card */
.woocommerce-account .woocommerce-MyAccount-content form.edit-account,
.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-address-fields,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields {
	max-width: 720px;
	background: #ffffff;
	border: 1px solid #ededed;
	border-radius: 20px;
	padding: 2.25rem 2.5rem 2.5rem;
	box-shadow: 0 12px 44px rgba(0, 0, 0, 0.05);
}

/* Section heading (Billing / Shipping address) */
.woocommerce-account .woocommerce-MyAccount-content form h3,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields h3 {
	clear: both;
	margin: 0 0 1.75rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.9rem;
	font-weight: 600;
	color: #0a0a0a;
}

/* Rows */
.woocommerce-account .woocommerce-MyAccount-content form .form-row {
	margin: 0 0 1.4rem !important;
	padding: 0;
}

/* Labels */
.woocommerce-account .woocommerce-MyAccount-content form label {
	display: block !important;
	margin: 0 0 0.5rem !important;
	font-family: 'Mulish', system-ui, sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	color: #1a1a1a !important;
	/* Override any Blocksy gradient-text palette on labels */
	background: none !important;
	background-image: none !important;
	-webkit-background-clip: border-box !important;
	background-clip: border-box !important;
	-webkit-text-fill-color: #1a1a1a !important;
	line-height: 1.3;
}
.woocommerce-account .woocommerce-MyAccount-content form label .required {
	color: #c0392b;
	-webkit-text-fill-color: #c0392b;
	border: 0;
	text-decoration: none;
}
.woocommerce-account .woocommerce-MyAccount-content form label .optional {
	color: #9a9a9a;
	-webkit-text-fill-color: #9a9a9a;
	font-weight: 400;
}

/* Inputs + selects share one look */
.woocommerce-account .woocommerce-MyAccount-content form input.input-text,
.woocommerce-account .woocommerce-MyAccount-content form input[type="text"],
.woocommerce-account .woocommerce-MyAccount-content form input[type="email"],
.woocommerce-account .woocommerce-MyAccount-content form input[type="tel"],
.woocommerce-account .woocommerce-MyAccount-content form input[type="password"],
.woocommerce-account .woocommerce-MyAccount-content form select {
	width: 100%;
	height: 50px;
	padding: 0 1rem;
	border: 1px solid #e3e3e3;
	border-radius: 11px;
	background: #fafafa;
	font-family: 'Mulish', system-ui, sans-serif;
	font-size: 0.95rem;
	color: #0a0a0a;
	line-height: 1.4;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.woocommerce-account .woocommerce-MyAccount-content form input.input-text:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type="text"]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type="email"]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type="tel"]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type="password"]:focus,
.woocommerce-account .woocommerce-MyAccount-content form select:focus {
	background: #fff;
	border-color: #0a0a0a;
	box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.07);
	outline: none;
}
.woocommerce-account .woocommerce-MyAccount-content form input::placeholder {
	color: #b0b0b0;
}

/* Wrappers full width */
.woocommerce-account .woocommerce-MyAccount-content form .woocommerce-input-wrapper,
.woocommerce-account .woocommerce-MyAccount-content form .select2-container {
	display: block;
	width: 100% !important;
	margin: 0;
}

/* select2 (Country / State) to match native inputs */
.woocommerce-account .woocommerce-MyAccount-content form .select2-container .select2-selection--single {
	height: 50px !important;
	padding: 0 0.5rem;
	border: 1px solid #e3e3e3 !important;
	border-radius: 11px !important;
	background: #fafafa;
	display: flex;
	align-items: center;
}
.woocommerce-account .woocommerce-MyAccount-content form .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 1.4;
	padding-left: 0.6rem;
	color: #0a0a0a;
}
.woocommerce-account .woocommerce-MyAccount-content form .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 48px;
	right: 10px;
}
.woocommerce-account .woocommerce-MyAccount-content form .select2-container--open .select2-selection--single,
.woocommerce-account .woocommerce-MyAccount-content form .select2-container--focus .select2-selection--single {
	background: #fff;
	border-color: #0a0a0a !important;
	box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.07);
}

/* Two-column: First / Last name */
.woocommerce-account .woocommerce-MyAccount-content form .form-row-first,
.woocommerce-account .woocommerce-MyAccount-content form .woocommerce-form-row--first {
	float: left !important;
	clear: both !important;
	width: calc(50% - 0.9rem) !important;
	margin-right: 1.8rem !important;
	box-sizing: border-box;
}
.woocommerce-account .woocommerce-MyAccount-content form .form-row-last,
.woocommerce-account .woocommerce-MyAccount-content form .woocommerce-form-row--last {
	float: right !important;
	clear: none !important;
	width: calc(50% - 0.9rem) !important;
	margin-right: 0 !important;
	box-sizing: border-box;
}
.woocommerce-account .woocommerce-MyAccount-content form .form-row-wide,
.woocommerce-account .woocommerce-MyAccount-content form fieldset {
	clear: both;
}

/* Street address 1 + 2 → one grouped field */
.woocommerce-account .woocommerce-MyAccount-content form .woocommerce-input-wrapper input + input {
	margin-top: 0.6rem;
}

/* Password fieldset (edit-account) */
.woocommerce-account .woocommerce-MyAccount-content form fieldset {
	margin: 2rem 0 0;
	padding: 1.5rem 1.6rem 1.6rem;
	border: 1px solid #eee;
	border-radius: 14px;
	background: #fafafa;
}
.woocommerce-account .woocommerce-MyAccount-content form fieldset legend {
	float: none;
	width: auto;
	padding: 0;
	margin: 0 0 1rem;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #0a0a0a;
}
.woocommerce-account .woocommerce-MyAccount-content form fieldset .form-row:last-child {
	margin-bottom: 0 !important;
}

/* Hint text */
.woocommerce-account .woocommerce-MyAccount-content form span em {
	display: block;
	margin-top: 0.4rem;
	font-style: normal;
	font-size: 0.78rem;
	color: #999;
}

/* Submit button */
.woocommerce-account .woocommerce-MyAccount-content form button[type="submit"] {
	clear: both;
	margin-top: 1.75rem;
	padding: 0.95rem 2.4rem;
	border-radius: 11px;
	background: #0a0a0a;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: 0;
	transition: transform 0.2s ease, background 0.2s ease;
}
.woocommerce-account .woocommerce-MyAccount-content form button[type="submit"]:hover {
	background: #2e2e2e;
	transform: translateY(-1px);
}

/* ── Addresses overview cards ─────────────────────────────────────────── */
.woocommerce-account .woocommerce-Addresses {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-top: 1.5rem;
	float: none;
}
@media (min-width: 640px) {
	.woocommerce-account .woocommerce-Addresses { grid-template-columns: 1fr 1fr; }
}
.woocommerce-account .woocommerce-Address {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	padding: 1.75rem;
	border: 1px solid #ededed;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}
.woocommerce-account .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}
.woocommerce-account .woocommerce-Address-title h3 {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #0a0a0a;
}
.woocommerce-account .woocommerce-Address-title .edit {
	flex-shrink: 0;
	padding: 0.5rem 1.1rem;
	border: 1px solid #0a0a0a;
	border-radius: 9px;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0a0a0a;
	transition: all 0.25s ease;
}
.woocommerce-account .woocommerce-Address-title .edit:hover {
	background: #0a0a0a;
	color: #fff;
}
.woocommerce-account .woocommerce-Address address {
	font-style: normal;
	font-size: 0.92rem;
	line-height: 1.7;
	color: #6b6b6b;
}

/* Hide the redundant "My account" page title on account pages */
.woocommerce-account .page-title,
.woocommerce-account h1.page-title,
.woocommerce-account .entry-header .page-title {
	display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════
   CHECKOUT — branded form fields (match My Account forms)
   ═══════════════════════════════════════════════════════════════════════ */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout #order_review_heading {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.9rem;
	font-weight: 600;
	color: #0a0a0a;
	margin: 0 0 1.5rem;
}

/* Rows */
.woocommerce-checkout .form-row {
	margin: 0 0 1.4rem !important;
	padding: 0;
}

/* Labels (kill Blocksy gradient text) */
.woocommerce-checkout .form-row label {
	display: block !important;
	margin: 0 0 0.5rem !important;
	font-family: 'Mulish', system-ui, sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	color: #1a1a1a !important;
	background: none !important;
	background-image: none !important;
	-webkit-background-clip: border-box !important;
	background-clip: border-box !important;
	-webkit-text-fill-color: #1a1a1a !important;
	line-height: 1.3;
}
.woocommerce-checkout .form-row label .required {
	color: #c0392b;
	-webkit-text-fill-color: #c0392b;
	border: 0;
}
.woocommerce-checkout .form-row label .optional {
	color: #9a9a9a;
	-webkit-text-fill-color: #9a9a9a;
	font-weight: 400;
}

/* Inputs + selects */
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
	width: 100%;
	height: 50px;
	padding: 0 1rem;
	border: 1px solid #e3e3e3;
	border-radius: 11px;
	background: #fafafa;
	font-family: 'Mulish', system-ui, sans-serif;
	font-size: 0.95rem;
	color: #0a0a0a;
	line-height: 1.4;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.woocommerce-checkout .form-row textarea {
	height: auto;
	min-height: 110px;
	padding: 0.8rem 1rem;
	resize: vertical;
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
	background: #fff;
	border-color: #0a0a0a;
	box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.07);
	outline: none;
}
.woocommerce-checkout .form-row input::placeholder,
.woocommerce-checkout .form-row textarea::placeholder { color: #b0b0b0; }

/* Wrappers full width */
.woocommerce-checkout .form-row .woocommerce-input-wrapper,
.woocommerce-checkout .form-row .select2-container { display: block; width: 100% !important; margin: 0; }

/* select2 (Country / State) */
.woocommerce-checkout .select2-container .select2-selection--single {
	height: 50px !important;
	padding: 0 0.5rem;
	border: 1px solid #e3e3e3 !important;
	border-radius: 11px !important;
	background: #fafafa;
	display: flex;
	align-items: center;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 1.4;
	padding-left: 0.6rem;
	color: #0a0a0a;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow { height: 48px; right: 10px; }
.woocommerce-checkout .select2-container--open .select2-selection--single,
.woocommerce-checkout .select2-container--focus .select2-selection--single {
	background: #fff;
	border-color: #0a0a0a !important;
	box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.07);
}

/* Two-column First / Last name */
.woocommerce-checkout .form-row-first {
	float: left !important;
	clear: both !important;
	width: calc(50% - 0.9rem) !important;
	margin-right: 1.8rem !important;
}
.woocommerce-checkout .form-row-last {
	float: right !important;
	width: calc(50% - 0.9rem) !important;
	margin-right: 0 !important;
}
.woocommerce-checkout .form-row-wide { clear: both; }

/* Street address_1 + _2 grouped */
.woocommerce-checkout .form-row .woocommerce-input-wrapper input + input { margin-top: 0.6rem; }

/* ═══════════════════════════════════════════════════════════════════════
   WooCommerce notices (error / success / info)
   ═══════════════════════════════════════════════════════════════════════ */
.woocommerce-notices-wrapper { margin-bottom: 1.5rem; }

.woocommerce .woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce-page .woocommerce-error,
.woocommerce-page .woocommerce-message,
.woocommerce-page .woocommerce-info {
	list-style: none !important;
	margin: 0 0 1.5rem !important;
	padding: 1.15rem 1.4rem 1.15rem 3rem !important;
	border-radius: 14px !important;
	border: 1px solid transparent !important;
	border-left-width: 4px !important;
	background: #fff !important;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05) !important;
	font-family: 'Mulish', system-ui, sans-serif !important;
	font-size: 0.9rem !important;
	line-height: 1.55 !important;
	position: relative !important;
}
/* list items */
.woocommerce .woocommerce-error li,
.woocommerce-page .woocommerce-error li {
	margin: 0 0 0.25rem !important;
	padding: 0 !important;
	list-style: none !important;
}
.woocommerce .woocommerce-error li:last-child { margin-bottom: 0 !important; }
.woocommerce .woocommerce-error li strong,
.woocommerce .woocommerce-error strong { color: inherit; }

/* Error = soft red */
.woocommerce .woocommerce-error,
.woocommerce-page .woocommerce-error {
	background: #fdf3f2 !important;
	border-color: #f0c9c4 !important;
	border-left-color: #c0392b !important;
	color: #a5342a !important;
}
/* Success = brand dark */
.woocommerce .woocommerce-message,
.woocommerce-page .woocommerce-message {
	background: #f4f7f4 !important;
	border-color: #d7e3d7 !important;
	border-left-color: #2e7d32 !important;
	color: #1f4a22 !important;
}
/* Info = neutral */
.woocommerce .woocommerce-info,
.woocommerce-page .woocommerce-info {
	background: #f5f4f2 !important;
	border-color: #e5e2dc !important;
	border-left-color: #0a0a0a !important;
	color: #333 !important;
}

/* Leading icon */
.woocommerce .woocommerce-error::before,
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before,
.woocommerce-page .woocommerce-error::before,
.woocommerce-page .woocommerce-message::before,
.woocommerce-page .woocommerce-info::before {
	font-family: 'Font Awesome 6 Free' !important;
	font-weight: 900 !important;
	position: absolute !important;
	left: 1.15rem !important;
	top: 1.15rem !important;
	font-size: 0.95rem !important;
	line-height: 1.4 !important;
	color: inherit !important;
	content: "\f06a" !important; /* circle-exclamation */
}
.woocommerce .woocommerce-message::before,
.woocommerce-page .woocommerce-message::before { content: "\f058" !important; } /* circle-check */
.woocommerce .woocommerce-info::before,
.woocommerce-page .woocommerce-info::before { content: "\f05a" !important; } /* circle-info */

/* Notice action button (e.g. View cart) */
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-message .button {
	float: right;
	margin-top: -0.2rem;
	padding: 0.5rem 1.1rem !important;
	font-size: 0.7rem !important;
	border-radius: 9px !important;
}
