/*
Theme Name: Nordonia Landscape Supplies
Template: devq-starter
Author: Josh Yager
Author URI: https://thedevq.com/
Description: Child theme for Nordonia Landscape Supplies, built on DevQ Starter
Version: 1.0.0
*/

/* ──────────────────────────────────────────────────────
   GLOBAL — Figma Design System
   ────────────────────────────────────────────────────── */

body {
    color: #3d4a43;
    background: #f9faf7;
}

h1, h2, h3, h4, h5, h6 {
    color: #1a1c1b;
    text-transform: uppercase;
}

a {
    color: #1FA67A;
    transition: color 0.2s ease;
}

a:hover {
    color: #006c4d;
}

.cs-topper {
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: #006c4d !important;
}

.btn {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 14px;
}

.text-green {
    color: #1FA67A;
}


/* ──────────────────────────────────────────────────────
   UTILITY NAV BAR
   ────────────────────────────────────────────────────── */

.nordonia-utility-bar {
    background: #1a1c1b;
    color: #b0b5b2;
    font-size: 12px;
    padding: 6px 0;
}

.nordonia-utility-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nordonia-utility-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nordonia-utility-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #b0b5b2;
    text-decoration: none;
    font-size: 12px;
}

.nordonia-utility-item svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.nordonia-utility-phone {
    color: #fff;
    font-weight: 600;
}

.nordonia-utility-phone:hover {
    color: #1FA67A;
}

.nordonia-utility-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nordonia-utility-cart {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.nordonia-utility-cart:hover {
    background: #1FA67A;
    color: #fff;
}

.nordonia-utility-cart svg {
    flex-shrink: 0;
}

.nordonia-cart-count {
    min-width: 18px;
    height: 18px;
    background: #1FA67A;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.nordonia-utility-cart:hover .nordonia-cart-count {
    background: #fff;
    color: #1FA67A;
}

.nordonia-product-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.nordonia-search-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    width: 180px;
    outline: none;
}

.nordonia-search-input::placeholder {
    color: #777;
}

.nordonia-search-btn {
    background: transparent;
    border: none;
    color: #b0b5b2;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nordonia-search-btn:hover {
    color: #1FA67A;
}


/* ──────────────────────────────────────────────────────
   HEADER / NAV
   ────────────────────────────────────────────────────── */

.devq-header-wrap {
    background: #f9faf7 !important;
    border-bottom: 1px solid #f3f4f1;
}

.devq-header-standard .devq-desktop-nav > li > a {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.3px !important;
    font-size: 12px !important;
    color: #414945 !important;
    padding: 10px 12px !important;
}

.devq-header-standard .devq-desktop-nav > li > a:hover {
    color: #006c4d !important;
}

.devq-header-standard .dropdown-menu li a {
    font-size: 13px !important;
    font-weight: 500;
    padding: 8px 16px !important;
}

.devq-header .header-phone a {
    color: #1FA67A;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.devq-header .header-cta .btn {
    padding: 10px 24px;
    font-size: 12px;
}


/* ──────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────── */

.devq-footer {
    background: #f3f4f1;
    border-top: 1px solid #e2e3e0;
    color: #414945;
}

.devq-footer h4,
.devq-footer .footer-heading {
    color: #414945;
    font-weight: 600;
    font-size: 14px;
}

.devq-footer a {
    color: #414945;
    font-size: 14px;
}

.devq-footer a:hover {
    color: #1FA67A;
}

.devq-footer .footer-bottom {
    border-top: 1px solid #e2e3e0;
    color: #999;
}


/* ──────────────────────────────────────────────────────
   FLOATING CART FAB
   ────────────────────────────────────────────────────── */

.nordonia-cart-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #1FA67A;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(31, 166, 122, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 999;
    text-decoration: none;
}

.nordonia-cart-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(31, 166, 122, 0.5);
    color: #fff;
}

.nordonia-cart-fab svg {
    width: 22px;
    height: 22px;
}

.nordonia-fab-count {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 20px;
    height: 20px;
    background: #C0392B;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    border: 2px solid #fff;
}


/* ──────────────────────────────────────────────────────
   NOTIFICATION BAR
   ────────────────────────────────────────────────────── */

.nordonia-notification-bar {
    background: #1FA67A;
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1000;
}

.nordonia-notification-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.nordonia-notification-bar .nordonia-notification-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nordonia-notification-bar .nordonia-notification-content p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.nordonia-notification-bar .nordonia-notification-link {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.nordonia-notification-bar .nordonia-notification-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.nordonia-notification-bar .nordonia-notification-close:hover {
    opacity: 1;
}

.nordonia-notification-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nordonia-notification-popup {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.nordonia-notification-popup .nordonia-notification-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}


/* ──────────────────────────────────────────────────────
   WOOCOMMERCE — Archive Page Layout
   ────────────────────────────────────────────────────── */

.nordonia-archive-wrapper {
    padding: 40px 0 80px;
    background: #f9faf7;
}

/* ── Archive Header ── */

.nordonia-archive-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e3e0;
}

.nordonia-archive-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #006c4d;
    display: block;
    margin-bottom: 12px;
}

.nordonia-archive-eyebrow a {
    color: #999;
    text-decoration: none;
}

.nordonia-archive-eyebrow a:hover {
    color: #006c4d;
}

.nordonia-archive-sep {
    color: #ccc;
    margin: 0 6px;
}

.nordonia-archive-title {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin: 0 0 8px;
    color: #1a1c1b;
}

.nordonia-archive-description {
    font-size: 16px;
    color: #3d4a43;
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}

/* ── Sidebar + Grid Layout ── */

.nordonia-archive-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Sidebar ── */

.nordonia-archive-sidebar {
    position: sticky;
    top: 100px;
}

.nordonia-sidebar-section {
    margin-bottom: 32px;
}

.nordonia-sidebar-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #1a1c1b;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1a1c1b;
}

.nordonia-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nordonia-category-list li {
    margin: 0;
}

.nordonia-category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #3d4a43;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.15s ease;
}

.nordonia-category-list li a:hover {
    background: #f3f4f1;
    color: #1a1c1b;
}

.nordonia-category-list li.active a {
    background: #006c4d;
    color: #fff;
}

.nordonia-category-list li.active .nordonia-cat-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.nordonia-cat-count {
    font-size: 11px;
    font-weight: 700;
    background: #f3f4f1;
    color: #999;
    padding: 2px 8px;
    border-radius: 10px;
}

/* ── Project Support Callout ── */

.nordonia-sidebar-callout {
    background: #f3f4f1;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
}

.nordonia-callout-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #1FA67A;
}

.nordonia-callout-heading {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
    color: #1a1c1b;
}

.nordonia-callout-text {
    font-size: 13px;
    color: #3d4a43;
    line-height: 1.6;
    margin: 0 0 16px;
}

.nordonia-callout-btn {
    display: block;
    padding: 12px 16px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    border-radius: var(--button-radius, 2px);
    transition: var(--transition-default);
}

.nordonia-callout-btn:hover {
    background: var(--secondary);
    color: #fff;
}

/* ── Inline Mini Calculator ── */

.nordonia-mini-calc {
    background: #f3f4f1;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

.nordonia-mini-calc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1c1b;
    margin-bottom: 16px;
}

.nordonia-mini-calc-header svg {
    color: #1FA67A;
    flex-shrink: 0;
}

.nordonia-mini-calc-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.nordonia-mini-calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.nordonia-mini-calc-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #5a6b60;
    margin-bottom: 4px;
}

.nordonia-mini-calc-field input,
.nordonia-mini-calc-field select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #d4d8d5;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    color: #1a1c1b;
    box-sizing: border-box;
}

.nordonia-mini-calc-field input:focus,
.nordonia-mini-calc-field select:focus {
    outline: none;
    border-color: #1FA67A;
}

.nordonia-mini-calc-result {
    background: #1FA67A;
    color: #fff;
    border-radius: 6px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.mini-calc-yards {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.nordonia-mini-calc-unit {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.nordonia-mini-calc-link {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #1FA67A;
    text-decoration: none;
}

.nordonia-mini-calc-link:hover {
    color: var(--secondary);
}

/* Single product page: give it some breathing room */
.nordonia-single-details .nordonia-mini-calc {
    margin-top: 24px;
    border: 1px solid #e2e5e3;
    background: #fafbfa;
}

/* ── Product Grid ── */

.nordonia-archive-products {
    min-width: 0;          /* prevent grid blowout in 1fr column */
}

.nordonia-archive-products .products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)) !important;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Kill WooCommerce clearfix pseudo-elements that break the grid */
.nordonia-archive-products .products::before,
.nordonia-archive-products .products::after {
    display: none !important;
    content: none !important;
}

/* Override WooCommerce default product widths/floats */
.nordonia-archive-products .products .product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    clear: none !important;
}

/* ── Product Card ── */

.nordonia-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: visible;
    border: 1px solid #e2e3e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
    list-style: none;
}

.nordonia-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.nordonia-product-image-link {
    display: block !important;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f3f4f1;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.nordonia-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* ── Sold-by badge on image ── */

.nordonia-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
}

.nordonia-badge-unit {
    background: #C0392B;
    color: #fff;
}

/* Override WC default product image height */
.woocommerce ul.products li.product a img {
    height: 100% !important;
}

/* ── Fulfillment badge ── */

.nordonia-fulfillment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.nordonia-fulfillment-both {
    background: #e8f5f0;
    color: #006c4d;
}

.nordonia-fulfillment-pickup {
    background: #fff3e0;
    color: #b56a00;
}

.nordonia-fulfillment-delivery {
    background: #e3f2fd;
    color: #1565c0;
}

.nordonia-product-card:hover .nordonia-product-image {
    transform: scale(1.05);
}

.nordonia-product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nordonia-product-title-link {
    text-decoration: none;
}

.nordonia-product-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #1a1c1b;
    margin: 0 0 6px;
    line-height: 1.3;
}

.nordonia-product-excerpt {
    font-size: 13px;
    color: #999;
    margin: 0 0 12px;
    line-height: 1.5;
}

.nordonia-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #1FA67A;
    margin-bottom: 16px;
    margin-top: auto;
}

.nordonia-product-price del {
    color: #ccc;
    font-size: 14px;
    margin-right: 4px;
}

.nordonia-product-price ins {
    text-decoration: none;
}

/* ── Qty Input + Add to Cart Row ── */

.nordonia-qty-row,
.nordonia-single-qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nordonia-qty-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e2e3e0;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.nordonia-qty-btn {
    width: 36px;
    height: 40px;
    border: none;
    background: #f9faf7;
    color: #3d4a43;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    padding: 0;
    line-height: 1;
}

.nordonia-qty-btn:hover {
    background: #f3f4f1;
}

.nordonia-qty-input {
    width: 48px;
    height: 40px;
    border: none;
    border-left: 1px solid #e2e3e0;
    border-right: 1px solid #e2e3e0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #1a1c1b;
    background: #fff;
    -moz-appearance: textfield;
    padding: 0;
}

.nordonia-qty-input::-webkit-outer-spin-button,
.nordonia-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.nordonia-add-to-cart {
    flex: 1;
    min-width: 0;
    height: 40px;
    padding: 0 16px !important;
    font-size: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* ── Stock Status ── */

.nordonia-product-stock-status {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    margin-top: auto;
    padding-top: 12px;
}

.nordonia-product-stock-status a {
    color: #1FA67A;
    font-weight: 700;
}

/* ── WC Notices ── */

.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

.woocommerce-message {
    background: #f3f4f1;
    border-left: 4px solid #1FA67A;
    padding: 12px 20px;
    font-size: 14px;
    color: #3d4a43;
    border-radius: 0 4px 4px 0;
}

/* ── Pagination ── */

.woocommerce-pagination {
    margin-top: 40px;
    text-align: center;
}

.woocommerce-pagination .page-numbers {
    display: inline-flex;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #3d4a43;
    text-decoration: none;
    transition: all 0.15s ease;
}

.woocommerce-pagination .page-numbers li a:hover {
    background: #f3f4f1;
}

.woocommerce-pagination .page-numbers li span.current {
    background: #006c4d;
    color: #fff;
}


/* ──────────────────────────────────────────────────────
   WOOCOMMERCE — Single Product
   ────────────────────────────────────────────────────── */

.nordonia-single-product {
    padding: 40px 0 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.nordonia-single-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ── Images ── */

.nordonia-single-main-image {
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f1;
    margin-bottom: 12px;
}

.nordonia-single-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.nordonia-single-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.nordonia-gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: #f3f4f1;
    padding: 0;
    flex-shrink: 0;
    transition: border-color 0.15s ease;
}

.nordonia-gallery-thumb:hover,
.nordonia-gallery-thumb.active {
    border-color: #1FA67A;
}

.nordonia-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Details ── */

.nordonia-single-cats {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #006c4d;
    margin-bottom: 8px;
}

.nordonia-single-cats a {
    color: #006c4d;
    text-decoration: none;
}

.nordonia-single-cats a:hover {
    color: #1FA67A;
}

.nordonia-single-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0 0 16px;
    color: #1a1c1b;
}

.nordonia-single-price {
    font-size: 28px;
    font-weight: 700;
    color: #1FA67A;
    margin-bottom: 20px;
}

.nordonia-single-price del {
    color: #ccc;
    font-size: 20px;
    margin-right: 8px;
}

.nordonia-single-price ins {
    text-decoration: none;
}

.nordonia-single-excerpt {
    font-size: 15px;
    color: #3d4a43;
    line-height: 1.7;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e3e0;
}

.nordonia-single-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.nordonia-badge-sold-by {
    background: #C0392B;
    color: #fff;
}

.nordonia-single-cart-form {
    margin-bottom: 32px;
}

.nordonia-single-qty-row .nordonia-add-to-cart {
    flex: unset;
    padding: 0 32px !important;
    font-size: 13px !important;
}

/* ── Select Options Button (Variable Products) ── */

.nordonia-select-options {
    min-height: 50px;
    text-decoration: none;
    text-align: center;
}

/* ── Variable Product Form (Single Product) ── */

.nordonia-single-details .variations_form {
    margin-bottom: 32px;
}

.nordonia-single-details .variations_form .variations {
    border: none;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.nordonia-single-details .variations_form .variations td,
.nordonia-single-details .variations_form .variations th {
    border: none;
    padding: 0;
    vertical-align: middle;
}

.nordonia-single-details .variations_form .variations tbody {
    display: block;
}

.nordonia-single-details .variations_form .variations tr {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.nordonia-single-details .variations_form .variations .label {
    width: auto;
    flex-shrink: 0;
    order: -1;
}

.nordonia-single-details .variations_form .variations .label label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1c1b;
    white-space: nowrap;
}

.nordonia-single-details .variations_form .variations .value {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nordonia-single-details .variations_form .variations .value select {
    width: 100%;
    height: 46px;
    padding: 0 40px 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1c1b;
    background: #fff;
    border: 1px solid #e2e3e0;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    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='%233d4a43' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.nordonia-single-details .variations_form .variations .value select:hover,
.nordonia-single-details .variations_form .variations .value select:focus {
    border-color: #1FA67A;
    outline: none;
}

.nordonia-single-details .variations_form .variations .reset_variations {
    font-size: 12px;
    font-weight: 600;
    color: #1FA67A;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

.nordonia-single-details .variations_form .variations .reset_variations:hover {
    color: #006c4d;
}

/* Variation description + price */
.nordonia-single-details .variations_form .woocommerce-variation {
    margin-bottom: 20px;
}

.nordonia-single-details .variations_form .woocommerce-variation-description p {
    font-size: 13px;
    font-weight: 600;
    color: #3d4a43;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nordonia-single-details .variations_form .woocommerce-variation-price .price {
    font-size: 26px;
    font-weight: 800;
    color: #1FA67A;
}

.nordonia-single-details .variations_form .woocommerce-variation-price .price .woocommerce-Price-amount {
    font-size: inherit;
    font-weight: inherit;
}

/* Add to cart row inside variation form */
.nordonia-single-details .variations_form .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nordonia-single-details .variations_form .woocommerce-variation-add-to-cart .quantity {
    display: flex;
    align-items: center;
    border: 1px solid #e2e3e0;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.nordonia-single-details .variations_form .woocommerce-variation-add-to-cart .quantity .qty {
    width: 56px;
    height: 46px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #1a1c1b;
    background: #fff;
    -moz-appearance: textfield;
    padding: 0;
}

.nordonia-single-details .variations_form .woocommerce-variation-add-to-cart .quantity .qty::-webkit-outer-spin-button,
.nordonia-single-details .variations_form .woocommerce-variation-add-to-cart .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.nordonia-single-details .variations_form .single_add_to_cart_button {
    height: 46px;
    padding: 0 32px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    background: #1FA67A;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.nordonia-single-details .variations_form .single_add_to_cart_button:hover {
    background: #006c4d;
    transform: translateY(-1px);
}

.nordonia-single-details .variations_form .single_add_to_cart_button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nordonia-single-description {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e3e0;
}

.nordonia-single-desc-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 12px;
    color: #1a1c1b;
}

.nordonia-single-description p {
    font-size: 15px;
    color: #3d4a43;
    line-height: 1.7;
}

.nordonia-single-meta {
    font-size: 13px;
    color: #999;
    margin-top: 16px;
}

.nordonia-meta-label {
    font-weight: 700;
    color: #3d4a43;
}

.nordonia-single-stock {
    padding: 12px 0;
    font-size: 15px;
}

/* ── Related Products ── */

.nordonia-related-section {
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid #e2e3e0;
}

.nordonia-related-heading {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 32px;
    color: #1a1c1b;
}

.nordonia-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nordonia-related-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e3e0;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nordonia-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.nordonia-related-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.nordonia-related-info {
    padding: 16px;
}

.nordonia-related-info h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #1a1c1b;
    margin: 0 0 4px;
}

.nordonia-related-price {
    font-size: 16px;
    font-weight: 700;
    color: #1FA67A;
}


/* ──────────────────────────────────────────────────────
   WOOCOMMERCE — Global Button Overrides
   ────────────────────────────────────────────────────── */

.woocommerce a.button,
.woocommerce button.button {
    background: linear-gradient(135deg, #006c4d, #1FA67A) !important;
    color: #fff !important;
    border-radius: 2px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
    opacity: 0.9 !important;
}


/* ──────────────────────────────────────────────────────
   PAGE HEADER (Content block used as page title)
   ────────────────────────────────────────────────────── */

.content-block h1 .text-green {
    color: #1FA67A;
}


/* ──────────────────────────────────────────────────────
   MOBILE MENU — Left-Aligned Dark Slate
   ────────────────────────────────────────────────────── */

/* Override parent: dark background, left-aligned content */
.devq-mobile-fullscreen {
    background: #111714 !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 80px 32px 40px !important;
    overflow-y: auto;
}

/* Subtle green glow accent */
.devq-mobile-fullscreen::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(31, 166, 122, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.devq-mobile-fullscreen > * {
    position: relative;
    z-index: 1;
}

/* Logo — left aligned, tight */
.devq-mobile-fullscreen .devq-mobile-logo {
    margin-bottom: 36px;
    display: block;
}

.devq-mobile-fullscreen .devq-mobile-logo img {
    max-width: 150px;
    opacity: 0.85;
}

/* Close button — top right, minimal circle */
.devq-mobile-fullscreen .devq-menu-close {
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    opacity: 1;
    transition: background 0.2s, transform 0.3s;
}

.devq-mobile-fullscreen .devq-menu-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(90deg);
}

/* ── Nav list — left aligned ── */
.devq-mobile-fullscreen .devq-mobile-nav {
    text-align: left !important;
    width: 100%;
}

.devq-mobile-fullscreen .devq-mobile-nav > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.devq-mobile-fullscreen .devq-mobile-nav > li:last-child {
    border-bottom: none;
}

/* Top-level links — left aligned, clean weight */
.devq-mobile-fullscreen .devq-mobile-nav > li > a,
.devq-mobile-fullscreen .devq-mobile-nav > li.menu-item-has-children > a,
.devq-mobile-fullscreen .devq-mobile-nav a {
    color: #fff !important;
}

.devq-mobile-fullscreen .devq-mobile-nav > li > a {
    display: block !important;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 10px 0;
    text-transform: uppercase;
}

.devq-mobile-fullscreen .devq-mobile-nav > li > a:hover {
    opacity: 1;
    color: #1FA67A !important;
}

/* Kill the underline hover effect from parent */
.devq-mobile-fullscreen .devq-mobile-nav > li > a::after {
    display: none !important;
}

/* ── Submenu chevron toggle — LARGE and obvious ── */
.devq-mobile-fullscreen .devq-submenu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    font-size: 0;
    transition: all 0.25s ease;
}

/* Replace the tiny text arrow with a proper SVG chevron via CSS */
.devq-mobile-fullscreen .devq-submenu-toggle span {
    display: block;
    width: 18px;
    height: 18px;
    position: relative;
    font-size: 0;
    color: transparent;
}

.devq-mobile-fullscreen .devq-submenu-toggle span::before,
.devq-mobile-fullscreen .devq-submenu-toggle span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 9px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s ease;
}

.devq-mobile-fullscreen .devq-submenu-toggle span::before {
    left: 2px;
    transform: translateY(-50%) rotate(40deg);
    color: rgba(255, 255, 255, 0.5);
}

.devq-mobile-fullscreen .devq-submenu-toggle span::after {
    right: 2px;
    transform: translateY(-50%) rotate(-40deg);
    color: rgba(255, 255, 255, 0.5);
}

/* Hover state for chevron */
.devq-mobile-fullscreen .devq-submenu-toggle:hover {
    background: rgba(31, 166, 122, 0.1);
    border-color: rgba(31, 166, 122, 0.2);
}

.devq-mobile-fullscreen .devq-submenu-toggle:hover span::before,
.devq-mobile-fullscreen .devq-submenu-toggle:hover span::after {
    color: #1FA67A;
}

/* Open state — rotate chevron to point up */
.devq-mobile-fullscreen .submenu-open > .devq-submenu-toggle {
    background: rgba(31, 166, 122, 0.12);
    border-color: rgba(31, 166, 122, 0.25);
}

.devq-mobile-fullscreen .submenu-open > .devq-submenu-toggle span::before {
    transform: translateY(-50%) rotate(-40deg);
    color: #1FA67A;
}

.devq-mobile-fullscreen .submenu-open > .devq-submenu-toggle span::after {
    transform: translateY(-50%) rotate(40deg);
    color: #1FA67A;
}

/* Parent items need relative positioning for the absolute toggle */
.devq-mobile-fullscreen .devq-mobile-nav > li {
    position: relative;
    padding-right: 56px;
}

/* ── Sub-menu items ── */
.devq-mobile-fullscreen .sub-menu {
    padding-left: 0;
    margin-left: 0;
}

.devq-mobile-fullscreen .submenu-open > .sub-menu {
    margin-top: 0;
    padding-bottom: 8px;
}

.devq-mobile-fullscreen .sub-menu a {
    display: block;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5) !important;
    padding: 10px 0 10px 16px;
    border-left: 2px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s, border-color 0.2s;
}

.devq-mobile-fullscreen .sub-menu a:hover {
    color: #1FA67A !important;
    border-left-color: #1FA67A;
}

/* ── Contact phone — bottom of menu ── */
.devq-mobile-fullscreen .devq-mobile-contact {
    margin-top: auto;
    padding-top: 32px;
    width: 100%;
}

.devq-mobile-fullscreen .devq-mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 20px;
    background: linear-gradient(135deg, #006c4d, #1FA67A);
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.devq-mobile-fullscreen .devq-mobile-contact a:hover {
    opacity: 0.9;
    color: #fff;
}

/* ── Phone size adjustments ── */
@media (max-width: 767px) {
    .nordonia-footer-col:has(.nordonia-footer-nav) {
        display: none;
    }

    .devq-mobile-fullscreen {
        padding: 72px 24px 32px !important;
    }

    .devq-mobile-fullscreen .devq-mobile-nav > li > a {
        font-size: 18px;
        padding: 10px 0;
    }

    .devq-mobile-fullscreen .devq-mobile-logo img {
        max-width: 120px;
    }

    .devq-mobile-fullscreen .devq-mobile-logo {
        margin-bottom: 24px;
    }

    .devq-mobile-fullscreen .sub-menu a {
        font-size: 0.85rem;
        padding: 8px 0 8px 14px;
    }

    .devq-mobile-fullscreen .devq-submenu-toggle {
        width: 40px;
        height: 40px;
    }
}


/* ──────────────────────────────────────────────────────
   TABLET — 1199px
   ────────────────────────────────────────────────────── */

@media (max-width: 1199px) {
    .devq-header-standard .devq-header-logo img {
        margin: 0;
    }

    .nordonia-utility-bar {
        display: none;
    }

    .nordonia-archive-layout {
        grid-template-columns: 220px 1fr;
        gap: 24px;
    }

    .nordonia-archive-products .products {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 16px;
    }

    .nordonia-archive-title {
        font-size: 32px;
    }

    .nordonia-single-layout {
        gap: 40px;
    }

    .nordonia-single-title {
        font-size: 28px;
    }

    .nordonia-single-price {
        font-size: 24px;
    }

    .nordonia-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}


/* ──────────────────────────────────────────────────────
   MOBILE — 767px
   ────────────────────────────────────────────────────── */

@media (max-width: 767px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .nordonia-archive-wrapper .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .nordonia-cart-fab {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    /* Hide FAB on single product pages — redundant with Add to Cart */
    .single-product .nordonia-cart-fab {
        display: none;
    }

    .nordonia-cart-fab svg {
        width: 18px;
        height: 18px;
    }

    /* Archive */
    .nordonia-archive-wrapper {
        padding: 16px 0 48px;
    }

    .nordonia-archive-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .nordonia-archive-title {
        font-size: 22px;
        letter-spacing: -0.5px;
    }

    .nordonia-archive-layout {
        display: block !important;
    }

    /* Hide entire sidebar on mobile — products first */
    .nordonia-archive-sidebar {
        display: none !important;
    }

    /* Product Grid — single column stack on mobile */
    .nordonia-archive-products {
        overflow: hidden;
        max-width: 100%;
    }

    .nordonia-archive-products .products {
        grid-template-columns: 1fr !important;
        gap: 12px;
        max-width: 100%;
    }

    .nordonia-product-card {
        border-radius: 6px;
        overflow: hidden;
        flex-direction: row !important;
        max-width: 100%;
    }

    .nordonia-product-image-link {
        aspect-ratio: 1 / 1;
        border-radius: 6px 0 0 6px;
        width: 110px;
        min-width: 110px;
        flex-shrink: 0;
    }

    .nordonia-product-info {
        padding: 10px 12px;
        justify-content: center;
        min-width: 0;
        flex: 1;
        overflow: hidden;
        width: 0; /* forces flex child to respect parent bounds */
    }

    .nordonia-product-title {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .nordonia-product-price {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .nordonia-product-excerpt {
        display: none;
    }

    /* Badges — smaller on mobile */
    .nordonia-badge {
        padding: 3px 8px;
        font-size: 9px;
        bottom: 6px;
        left: 6px;
    }

    /* Fulfillment badge — compact inline */
    .nordonia-fulfillment-badge {
        padding: 3px 6px;
        font-size: 9px;
        gap: 3px;
        margin-bottom: 6px;
    }

    .nordonia-fulfillment-badge svg {
        width: 10px;
        height: 10px;
    }

    .nordonia-product-fulfillment {
        font-size: 10px;
        gap: 3px;
        margin-bottom: 6px;
    }

    .nordonia-product-fulfillment svg {
        width: 10px;
        height: 10px;
    }

    /* Qty + ATC — compact row, must stay in bounds */
    .nordonia-product-cart-form {
        max-width: 100%;
    }

    .nordonia-qty-row {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        max-width: 100%;
    }

    .nordonia-qty-wrapper {
        height: 32px;
        flex-shrink: 0;
    }

    .nordonia-qty-btn {
        width: 28px;
        height: 32px;
        font-size: 13px;
        padding: 0;
    }

    .nordonia-qty-input {
        width: 32px;
        height: 32px;
        font-size: 12px;
        padding: 0;
    }

    .nordonia-add-to-cart {
        flex: 1;
        min-width: 0;
        height: 32px;
        padding: 0 8px !important;
        font-size: 10px !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Single Product */
    .nordonia-single-product {
        padding: 0 0 48px;
    }

    .nordonia-single-product > .nordonia-single-layout {
        padding: 0 15px;
    }

    .nordonia-single-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Full-bleed product image on mobile */
    .nordonia-single-images {
        margin: 0 -15px;
    }

    .nordonia-single-main-image {
        border-radius: 0;
        margin-bottom: 8px;
    }

    .nordonia-single-gallery {
        padding: 0 15px;
    }

    .nordonia-single-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .nordonia-single-price {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .nordonia-single-excerpt {
        font-size: 14px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .nordonia-single-badges {
        margin-bottom: 12px;
    }

    .nordonia-single-qty-row {
        gap: 8px;
    }

    .nordonia-single-qty-row .nordonia-add-to-cart {
        padding: 14px 24px !important;
        font-size: 13px !important;
        height: auto;
    }

    /* Inline calculator — more compact on single product mobile */
    .nordonia-single-details .nordonia-inline-calc {
        margin-top: 24px;
    }

    .nordonia-single-description {
        margin-top: 16px;
        padding-top: 16px;
    }

    .nordonia-related-section {
        margin-top: 40px;
        padding-top: 24px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .nordonia-related-heading {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .nordonia-related-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .nordonia-related-info {
        padding: 10px;
    }

    .nordonia-related-info h4 {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .nordonia-related-price {
        font-size: 14px;
    }

    /* ── WooCommerce empty cart / cross-sells ── */
    .woocommerce ul.products {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .woocommerce ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
    }

    .woocommerce ul.products li.product img {
        border-radius: 6px;
    }

    .woocommerce ul.products li.product a.woocommerce-loop-product__link {
        text-decoration: none;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 13px;
        padding: 8px 0 4px;
    }

    .woocommerce ul.products li.product .price {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .woocommerce ul.products li.product .button {
        font-size: 11px !important;
        padding: 8px 14px !important;
    }
}


/* ══════════════════════════════════════════════════════
   WOOCOMMERCE BLOCKS — Cart Page
   ══════════════════════════════════════════════════════ */

/* Page wrapper */
.wc-block-cart,
.wc-block-checkout {
    font-family: 'Inter', sans-serif;
    color: #1B1C1C;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 48px 24px 80px;
}

/* ── Cart Header ── */
.wc-block-cart-items__header {
    border-bottom: 2px solid #1B1C1C;
    padding-bottom: 12px;
}

.wc-block-cart-items__header th,
.wc-block-cart-items__header-image,
.wc-block-cart-items__header-product,
.wc-block-cart-items__header-total {
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #3F6653;
    padding-bottom: 12px;
}

/* ── Cart Item Rows ── */
.wc-block-cart-items__row {
    border-bottom: 1px solid #E9E8E7;
    padding: 24px 0;
    transition: background 0.2s;
}

.wc-block-cart-items__row:last-child {
    border-bottom: 2px solid #E9E8E7;
}

/* Product image */
.wc-block-cart-item__image img {
    border-radius: 4px;
    border: 1px solid #E9E8E7;
}

/* Product name link */
.wc-block-components-product-name {
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #1B1C1C !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.wc-block-components-product-name:hover {
    color: #1FA67A !important;
}

/* Product price */
.wc-block-cart-item__prices .wc-block-components-product-price__value,
.wc-block-cart-item__total .wc-block-formatted-money-amount {
    font-weight: 800;
    font-size: 16px;
    color: #1B1C1C;
}

/* Product description/metadata */
.wc-block-components-product-metadata__description p {
    font-size: 13px;
    color: #6b7a72;
    line-height: 1.5;
}

/* ── Quantity Selector ── */
.wc-block-components-quantity-selector {
    border: 2px solid #E9E8E7 !important;
    border-radius: 4px !important;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    background: #fff;
    transition: border-color 0.2s;
}

.wc-block-components-quantity-selector:focus-within {
    border-color: #1FA67A !important;
}

.wc-block-components-quantity-selector__button {
    background: #F5F3F3 !important;
    border: none !important;
    color: #3F6653 !important;
    font-weight: 700;
    font-size: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.wc-block-components-quantity-selector__button:hover {
    background: #1FA67A !important;
    color: #fff !important;
}

.wc-block-components-quantity-selector__input {
    border: none !important;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    width: 44px;
    color: #1B1C1C;
    background: #fff;
}

/* Remove item link */
.wc-block-cart-item__remove-link {
    font-size: 12px !important;
    color: #b0a8a0 !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    text-decoration: none !important;
    transition: color 0.2s;
}

.wc-block-cart-item__remove-link:hover {
    color: #c0392b !important;
}

/* ── Cart Sidebar / Totals ── */
.wc-block-cart__sidebar {
    background: #F5F3F3;
    border-radius: 6px;
    padding: 32px !important;
    border: 1px solid #E9E8E7;
}

.wc-block-cart__totals-title {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #3F6653 !important;
    margin-bottom: 20px !important;
    padding-bottom: 14px;
    border-bottom: 2px solid #1B1C1C;
}

/* Coupon toggle */
.wc-block-components-totals-coupon button,
.wc-block-components-panel__button {
    font-size: 13px;
    color: #3F6653;
    font-weight: 600;
}

/* Totals rows */
.wc-block-components-totals-item {
    padding: 12px 0 !important;
    border-bottom: 1px solid #E9E8E7;
}

.wc-block-components-totals-item__label {
    font-size: 14px !important;
    font-weight: 500;
    color: #395A4C;
}

.wc-block-components-totals-item__value {
    font-size: 14px !important;
    font-weight: 700;
    color: #1B1C1C;
}

/* Hide "FREE" on shipping line in cart sidebar */
.wc-block-components-totals-shipping .wc-block-components-totals-item__value strong {
    display: none !important;
}

/* Estimated total — big row */
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #1B1C1C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #1B1C1C;
}

/* ── Proceed to Checkout Button ── */
.wc-block-cart__submit-container {
    margin-top: 24px;
}

.wc-block-cart__submit-button,
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button {
    background: linear-gradient(135deg, #006c4d, #1FA67A) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 3px !important;
    padding: 16px 32px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    width: 100%;
    text-align: center;
    display: block;
    box-shadow: 0 2px 8px rgba(31, 166, 122, 0.25);
}

.wc-block-cart__submit-button:hover,
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:hover {
    opacity: 0.92 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(31, 166, 122, 0.35);
}

/* WC Notices */
.wc-block-components-notice-banner {
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}


/* ══════════════════════════════════════════════════════
   WOOCOMMERCE BLOCKS — Checkout Page
   ══════════════════════════════════════════════════════ */

/* ── Section Steps ── */
.wc-block-components-checkout-step {
    border: none !important;
    margin-bottom: 8px;
    padding: 24px 0 !important;
    border-bottom: 1px solid #E9E8E7 !important;
}

/* Section headings */
.wc-block-components-checkout-step__title {
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #3F6653 !important;
}

.wc-block-components-checkout-step__heading-content a {
    font-size: 12px;
    font-weight: 600;
    color: #1FA67A !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.wc-block-components-checkout-step__heading-content a:hover {
    color: #006c4d !important;
}

/* ── Text Inputs ── */
.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="number"],
.wc-block-components-text-input textarea {
    border: 2px solid #E9E8E7 !important;
    border-radius: 4px !important;
    background: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500;
    color: #1B1C1C !important;
    padding: 10px 16px !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill,
.wc-block-components-form .wc-block-components-text-input.is-active input[type=email],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=number],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=password],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=tel],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=text],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=url],
.wc-block-components-text-input input:-webkit-autofill,
.wc-block-components-text-input.is-active input[type=email],
.wc-block-components-text-input.is-active input[type=number],
.wc-block-components-text-input.is-active input[type=password],
.wc-block-components-text-input.is-active input[type=tel],
.wc-block-components-text-input.is-active input[type=text],
.wc-block-components-text-input.is-active input[type=url] {
    padding-bottom: 0px !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-text-input textarea:focus {
    border-color: #1FA67A !important;
    box-shadow: 0 0 0 3px rgba(31, 166, 122, 0.12) !important;
    outline: none !important;
}

/* Floating labels */
.wc-block-components-text-input label {
    font-size: 13px !important;
    font-weight: 500;
    color: #6b7a72 !important;
    font-family: 'Inter', sans-serif !important;
}

.wc-block-components-text-input.is-active label {
    font-size: 11px !important;
    font-weight: 600;
    color: #3F6653 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Select Dropdowns ── */
.wc-blocks-components-select__select {
    border: 2px solid #E9E8E7 !important;
    border-radius: 4px !important;
    background: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500;
    color: #1B1C1C !important;
    padding: 14px 16px !important;
    transition: border-color 0.2s;
}

.wc-blocks-components-select__select:focus {
    border-color: #1FA67A !important;
    box-shadow: 0 0 0 3px rgba(31, 166, 122, 0.12) !important;
    outline: none !important;
}

.wc-blocks-components-select__label {
    font-size: 11px !important;
    font-weight: 600;
    color: #3F6653 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Checkboxes ── */
.wc-block-components-checkbox__input[type="checkbox"] {
    accent-color: #1FA67A;
}

.wc-block-components-checkbox__input[type="checkbox"]:checked {
    background-color: #1FA67A !important;
    border-color: #1FA67A !important;
}

.wc-block-components-checkbox__label {
    font-size: 14px;
    font-weight: 500;
    color: #395A4C;
}

/* ── Radio Controls (Shipping options) ── */
.wc-block-components-radio-control__option {
    border: 2px solid #E9E8E7 !important;
    border-radius: 6px !important;
    padding: 16px 20px 16px 48px !important;
    margin-bottom: 8px;
    transition: border-color 0.2s, background 0.2s;
    background: #fff;
}

.wc-block-components-radio-control__option--checked-option-highlighted,
.wc-block-components-radio-control__option-checked {
    border-color: #1FA67A !important;
    background: rgba(31, 166, 122, 0.04) !important;
}

.wc-block-components-radio-control__input {
    accent-color: #1FA67A !important;
}

.wc-block-components-radio-control__label {
    font-weight: 600 !important;
    color: #1B1C1C;
    font-size: 14px;
}

.wc-block-components-radio-control__secondary-label {
    font-weight: 700 !important;
    color: #1FA67A;
}

/* ── Checkout Sidebar / Order Summary ── */
.wc-block-checkout__sidebar {
    background: #F5F3F3;
    border-radius: 6px;
    padding: 32px !important;
    border: 1px solid #E9E8E7;
}

.wc-block-checkout__sidebar .wc-block-components-order-summary h2,
.wc-block-checkout__sidebar .wc-block-components-panel__button {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #3F6653 !important;
}

/* Order summary product rows */
.wc-block-components-order-summary-item {
    padding: 16px 0 !important;
    border-bottom: 1px solid #E9E8E7;
}

.wc-block-components-order-summary-item__image img {
    border-radius: 4px;
    border: 1px solid #E9E8E7;
}

.wc-block-components-order-summary-item__description .wc-block-components-product-name {
    font-size: 14px !important;
    font-weight: 600 !important;
}

.wc-block-components-order-summary-item__total-price {
    font-weight: 800 !important;
    color: #1B1C1C;
}

/* Checkout totals rows in sidebar */
.wc-block-checkout__sidebar .wc-block-components-totals-item {
    padding: 14px 20px !important;
}

/* Total row in checkout */
.wc-block-checkout__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wc-block-checkout__sidebar .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 20px !important;
    font-weight: 900 !important;
}

/* ── Place Order Button ── */
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button,
.wc-block-components-checkout-place-order-button {
    background: linear-gradient(135deg, #006c4d, #1FA67A) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 3px !important;
    padding: 18px 40px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(31, 166, 122, 0.25);
}

.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover,
.wc-block-components-checkout-place-order-button:hover {
    opacity: 0.92 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(31, 166, 122, 0.35);
}

/* Return to cart link */
.wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button {
    font-size: 13px !important;
    font-weight: 600;
    color: #3F6653 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.2s;
}

.wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button:hover {
    color: #1FA67A !important;
}

/* ── Contact section: show email, hide account/login ── */
fieldset#contact-fields .wc-block-checkout__create-account,
fieldset#contact-fields .wc-block-checkout__guest-checkout-notice,
fieldset#contact-fields .wc-block-checkout__login-prompt {
    display: none !important;
}

/* Simplify the contact heading since login link is hidden */
fieldset#contact-fields .wc-block-components-checkout-step__heading-content {
    display: none;
}

/* ── Terms text ── */
.wc-block-checkout__terms {
    font-size: 13px;
    color: #6b7a72;
    line-height: 1.6;
}

.wc-block-checkout__terms a {
    color: #1FA67A;
    font-weight: 600;
}

/* ── Add a note toggle ── */
.wc-block-checkout__add-note .wc-block-components-checkbox__label {
    font-size: 13px;
    color: #3F6653;
    font-weight: 600;
}

/* ── Delivery Date Field ── */
.wc-block-components-text-input input[type="date"] {
    border: 2px solid #E9E8E7 !important;
    border-radius: 4px !important;
    background: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500;
    color: #1B1C1C !important;
    padding: 22px 16px 8px !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.wc-block-components-text-input input[type="date"]:focus {
    border-color: #1FA67A !important;
    box-shadow: 0 0 0 3px rgba(31, 166, 122, 0.12) !important;
    outline: none !important;
}

.wc-block-components-text-input input[type="date"]:hover {
    border-color: #c5c3c1 !important;
}

/* Force label into floated-up position since date inputs always show placeholder */
.wc-block-components-text-input:has(input[type="date"]) label {
    font-size: 11px !important;
    font-weight: 600;
    color: #3F6653 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateY(0) !important;
    top: 4px !important;
    position: absolute;
    left: 16px;
}

/* Calendar picker icon */
.wc-block-components-text-input input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.2s;
    padding: 4px;
    border-radius: 3px;
}

.wc-block-components-text-input input[type="date"]:hover::-webkit-calendar-picker-indicator,
.wc-block-components-text-input input[type="date"]:focus::-webkit-calendar-picker-indicator {
    opacity: 0.7;
}

/* Chrome date picker dropdown styling */
::-webkit-datetime-edit {
    font-family: 'Inter', sans-serif;
}

::-webkit-datetime-edit-fields-wrapper {
    font-size: 15px;
    color: #1B1C1C;
}

::-webkit-datetime-edit-month-field:focus,
::-webkit-datetime-edit-day-field:focus,
::-webkit-datetime-edit-year-field:focus {
    background: rgba(31, 166, 122, 0.12);
    border-radius: 2px;
    color: #006c4d;
    outline: none;
}

/* ── Payment method notice (error) ── */
.wc-block-components-notice-banner.is-error {
    background: #fef2f0 !important;
    border-color: #e74c3c !important;
    border-radius: 6px;
    color: #c0392b;
}

.wc-block-components-notice-banner.is-success {
    background: rgba(31, 166, 122, 0.06) !important;
    border-color: #1FA67A !important;
    border-radius: 6px;
    color: #006c4d;
}

/* ── Mobile Order Summary Toggle ── */
.wc-block-checkout__sidebar-toggle-wrapper button {
    background: #F5F3F3 !important;
    border: 1px solid #E9E8E7 !important;
    border-radius: 6px;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
}

.wc-block-checkout__sidebar-toggle-wrapper h2 {
    font-size: 12px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #3F6653;
}

/* ── Address card (saved addresses) ── */
.wc-block-components-address-card {
    border: 2px solid #E9E8E7 !important;
    border-radius: 6px !important;
    padding: 20px !important;
    background: #fff;
}

.wc-block-components-address-card__edit {
    color: #1FA67A !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* ── Coupon form ── */
.wc-block-components-totals-coupon__form input {
    border: 2px solid #E9E8E7 !important;
    border-radius: 4px !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 10px 14px !important;
}

.wc-block-components-totals-coupon__form input:focus {
    border-color: #1FA67A !important;
    box-shadow: 0 0 0 3px rgba(31, 166, 122, 0.12) !important;
}

.wc-block-components-totals-coupon__form button {
    background: #3F6653 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px !important;
    transition: background 0.2s;
}

.wc-block-components-totals-coupon__form button:hover {
    background: #1FA67A !important;
}


/* ── Payment Gateway (Authorize.net) ── */
.wc-block-gateway-container {
    border: 2px solid #E9E8E7;
    border-radius: 6px;
    padding: 16px;
    background: #fff;
    transition: border-color 0.2s;
}

.wc-block-gateway-container:focus-within {
    border-color: #1FA67A;
}

.wc-block-gateway-container input {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    color: #1B1C1C !important;
}

.wc-block-components-payment-method-label {
    font-weight: 600 !important;
    font-size: 14px;
    color: #1B1C1C;
}

.wc-block-components-payment-method-icons {
    margin-top: 12px;
}

.wc-block-components-payment-method-icon {
    border: 1px solid #E9E8E7;
    border-radius: 3px;
}

/* ── Sidebar Order Summary Heading ── */
.wc-block-components-sidebar > div > h2,
.wp-block-woocommerce-checkout-order-summary-block > h2 {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #3F6653 !important;
    padding-bottom: 16px;
    border-bottom: 2px solid #1B1C1C;
    margin-bottom: 20px;
}


/* ══════════════════════════════════════════════════════
   CART & CHECKOUT — Responsive
   ══════════════════════════════════════════════════════ */

@media (max-width: 767px) {
    .wc-block-cart,
    .wc-block-checkout {
        padding: 16px 12px 60px;
    }

    .wc-block-cart__sidebar,
    .wc-block-checkout__sidebar {
        padding: 20px !important;
        border-radius: 6px;
        margin-top: 16px;
    }

    .wc-block-components-checkout-step {
        padding: 16px 0 !important;
    }

    .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
        font-size: 18px !important;
    }

    /* Cart item images — smaller on mobile */
    .wc-block-cart-item__image {
        width: 64px !important;
        min-width: 64px;
    }

    .wc-block-components-product-name {
        font-size: 14px !important;
    }

    .wc-block-components-product-metadata__description {
        display: none;
    }

    /* Checkout sidebar */
    .wc-block-checkout__sidebar {
        background: #F5F3F3;
        border: 1px solid #E9E8E7;
    }

    /* Order summary padding on mobile checkout */
    .wp-block-woocommerce-checkout-order-summary-totals-block {
        padding: 15px;
    }

    .wc-block-components-totals-item.wc-block-components-totals-footer-item {
        padding: 0 15px !important;
        border-bottom: 0 !important;
    }
}


/* ══════════════════════════════════════════════════════
   ADD-TO-CART TOAST
   ══════════════════════════════════════════════════════ */

.nordonia-toast {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 28, 28, 0.4);
    backdrop-filter: blur(2px);
    animation: nordonia-toast-in 0.25s ease;
}

@keyframes nordonia-toast-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.nordonia-toast-inner {
    background: #fff;
    border-radius: 8px;
    padding: 32px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    max-width: 360px;
    width: 90%;
}

.nordonia-toast-inner svg {
    margin-bottom: 12px;
}

.nordonia-toast-text {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1B1C1C;
    margin-bottom: 24px;
}

.nordonia-toast-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nordonia-toast-btn {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    border: none;
}

.nordonia-toast-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.nordonia-toast-btn-primary {
    background: linear-gradient(135deg, #006c4d, #1FA67A);
    color: #fff;
}

.nordonia-toast-btn-secondary {
    background: #F5F3F3;
    color: #3F6653;
}


/* ── Salt Redirect Button ── */
.nordonia-salt-redirect-btn {
    display: flex !important;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
    margin-top: auto;
    text-decoration: none !important;
    font-size: 12px !important;
    height: 50px !important;
    max-height: 50px;
    padding: 0 16px !important;
    box-sizing: border-box;
}

/* ══════════════════════════════════════════════════════
   404 PAGE
   ══════════════════════════════════════════════════════ */

.nordonia-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: #f9faf7;
}

.nordonia-404-inner {
    text-align: center;
    max-width: 560px;
}

.nordonia-404-code {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    background: linear-gradient(135deg, #1FA67A 0%, #006c4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.nordonia-404-title {
    font-size: 22px !important;
    font-weight: 700;
    color: #1a1c1b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.nordonia-404-message {
    font-size: 15px;
    color: #6b7a72;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.nordonia-404-search {
    display: flex;
    max-width: 420px;
    margin: 0 auto 40px;
    border: 2px solid #E9E8E7;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s;
    background: #fff;
}

.nordonia-404-search:focus-within {
    border-color: #1FA67A;
    box-shadow: 0 0 0 3px rgba(31, 166, 122, 0.12);
}

.nordonia-404-search-input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1B1C1C;
    background: transparent;
    outline: none;
}

.nordonia-404-search-input::placeholder {
    color: #a0a8a3;
}

.nordonia-404-search-btn {
    background: none;
    border: none;
    padding: 14px 16px;
    cursor: pointer;
    color: #3F6653;
    transition: color 0.2s;
}

.nordonia-404-search-btn:hover {
    color: #1FA67A;
}

.nordonia-404-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.nordonia-404-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid #E9E8E7;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #3F6653;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.2s;
    background: #fff;
}

.nordonia-404-link:hover {
    border-color: #1FA67A;
    color: #1FA67A;
    background: rgba(31, 166, 122, 0.04);
}

.nordonia-404-link svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.nordonia-404-link:hover svg {
    opacity: 1;
}

@media (max-width: 600px) {
    .nordonia-404 {
        padding: 60px 20px;
        min-height: 50vh;
    }

    .nordonia-404-code {
        font-size: 80px;
    }

    .nordonia-404-title {
        font-size: 18px !important;
    }

    .nordonia-404-links {
        flex-direction: column;
    }

    .nordonia-404-link {
        justify-content: center;
    }
}


/* ══════════════════════════════════════════════════════
   EMPTY CART PAGE
   ══════════════════════════════════════════════════════ */

.nordonia-empty-cart {
    text-align: center;
    padding: 60px 24px 80px;
    max-width: 720px;
    margin: 0 auto;
}

.nordonia-empty-cart-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 166, 122, 0.08), rgba(0, 108, 77, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #1FA67A;
}

.nordonia-empty-cart-title {
    font-size: 20px !important;
    font-weight: 700;
    color: #1a1c1b;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
}

.nordonia-empty-cart-message {
    font-size: 15px;
    color: #6b7a72;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 28px;
}

.nordonia-empty-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #006c4d, #1FA67A);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding: 14px 32px;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(31, 166, 122, 0.25);
}

.nordonia-empty-cart-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(31, 166, 122, 0.35);
    color: #fff;
}

.nordonia-empty-cart-cats {
    margin-top: 48px;
    border-top: 1px solid #E9E8E7;
    padding-top: 36px;
}

.nordonia-empty-cart-cats-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #3F6653;
    margin-bottom: 20px;
}

.nordonia-empty-cart-cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.nordonia-empty-cart-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    border: 2px solid #E9E8E7;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    background: #fff;
}

.nordonia-empty-cart-cat:hover {
    border-color: #1FA67A;
    background: rgba(31, 166, 122, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.nordonia-empty-cart-cat-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #E9E8E7;
}

.nordonia-empty-cart-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nordonia-empty-cart-cat:hover .nordonia-empty-cart-cat-img {
    border-color: #1FA67A;
}

.nordonia-empty-cart-cat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F5F3F3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3F6653;
    transition: all 0.2s;
}

.nordonia-empty-cart-cat:hover .nordonia-empty-cart-cat-icon {
    background: rgba(31, 166, 122, 0.1);
    color: #1FA67A;
}

.nordonia-empty-cart-cat-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1c1b;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.nordonia-empty-cart-cat-count {
    font-size: 12px;
    color: #6b7a72;
    font-weight: 500;
}

@media (max-width: 600px) {
    .nordonia-empty-cart {
        padding: 40px 16px 60px;
    }

    .nordonia-empty-cart-cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nordonia-empty-cart-cat {
        padding: 16px 10px;
    }

    .nordonia-empty-cart-icon {
        width: 72px;
        height: 72px;
    }

    .nordonia-empty-cart-icon svg {
        width: 36px;
        height: 36px;
    }
}


/* ══════════════════════════════════════════════════════
   WOOCOMMERCE — Order Received / Thank You Page
   ══════════════════════════════════════════════════════ */

/* Container */
.woocommerce-order {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    font-family: 'Inter', sans-serif;
    color: #1B1C1C;
}

/* Success message */
.woocommerce-order .woocommerce-thankyou-order-received {
    background: linear-gradient(135deg, #006c4d, #1FA67A);
    color: #fff;
    padding: 20px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.2px;
}

/* Order overview bar — stacked rows */
.woocommerce-order .woocommerce-order-overview {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    background: #F5F3F3;
    border-radius: 6px;
    border: 1px solid #E9E8E7;
    overflow: hidden;
}

.woocommerce-order .woocommerce-order-overview li {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 28px !important;
    margin: 0 !important;
    border-bottom: 1px solid #E9E8E7 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #395A4C !important;
}

.woocommerce-order .woocommerce-order-overview li:last-child {
    border-bottom: none;
}

.woocommerce-order .woocommerce-order-overview li:before {
    display: none;
}

.woocommerce-order .woocommerce-order-overview li strong {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1B1C1C !important;
    text-align: right !important;
}

/* Section headings */
.woocommerce-order h2 {
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #3F6653 !important;
    border-bottom: 2px solid #1B1C1C;
    padding-bottom: 12px;
    margin: 40px 0 20px;
}

/* Order details table */
.woocommerce-order .woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #E9E8E7;
    border-radius: 6px;
    overflow: hidden;
    font-size: 14px;
}

.woocommerce-order .woocommerce-table--order-details thead th {
    background: #F5F3F3;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #3F6653;
    padding: 14px 20px;
    border-bottom: 2px solid #E9E8E7;
    text-align: left;
}

.woocommerce-order .woocommerce-table--order-details td,
.woocommerce-order .woocommerce-table--order-details th {
    padding: 14px 20px;
    border-bottom: 1px solid #E9E8E7;
    vertical-align: middle;
}

.woocommerce-order .woocommerce-table--order-details tfoot th {
    font-weight: 600;
    color: #395A4C;
    text-transform: none;
    letter-spacing: normal;
    font-size: 14px;
    background: transparent;
    border-bottom: 1px solid #E9E8E7;
}

.woocommerce-order .woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-order .woocommerce-table--order-details tfoot tr:last-child td {
    font-size: 16px;
    font-weight: 800;
    color: #1B1C1C;
    border-bottom: none;
    padding-top: 18px;
    padding-bottom: 18px;
    background: #F5F3F3;
}

.woocommerce-order .woocommerce-table--order-details a {
    color: #1FA67A;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-order .woocommerce-table--order-details a:hover {
    color: #006c4d;
}

/* Addresses section */
.woocommerce-order .woocommerce-columns--addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.woocommerce-order .woocommerce-column--billing-address,
.woocommerce-order .woocommerce-column--shipping-address {
    background: #F5F3F3;
    border: 1px solid #E9E8E7;
    border-radius: 6px;
    padding: 24px;
}

.woocommerce-order .woocommerce-column--billing-address h2,
.woocommerce-order .woocommerce-column--shipping-address h2 {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 8px;
}

.woocommerce-order .woocommerce-column--billing-address address,
.woocommerce-order .woocommerce-column--shipping-address address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.7;
    color: #395A4C;
}

/* Additional information / custom fields */
.woocommerce-order section:last-of-type {
    margin-bottom: 40px;
}

.woocommerce-order .woocommerce-additional-fields__field-wrapper,
.woocommerce-order .wc-block-order-confirmation-additional-fields-wrapper {
    background: #F5F3F3;
    border: 1px solid #E9E8E7;
    border-radius: 6px;
    padding: 20px 24px;
}

/* Additional info table */
.woocommerce-order .wc-block-order-confirmation-additional-information table,
.woocommerce-order .shop_table.additional-information {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-order .wc-block-order-confirmation-additional-information td,
.woocommerce-order .wc-block-order-confirmation-additional-information th {
    padding: 10px 0;
    border-bottom: 1px solid #E9E8E7;
    font-size: 14px;
    color: #395A4C;
}

.woocommerce-order .wc-block-order-confirmation-additional-information tr:last-child td,
.woocommerce-order .wc-block-order-confirmation-additional-information tr:last-child th {
    border-bottom: none;
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .woocommerce-order {
        padding: 32px 16px 60px;
    }

    .woocommerce-order .woocommerce-order-overview li {
        padding: 12px 16px;
    }

    .woocommerce-order .woocommerce-columns--addresses {
        grid-template-columns: 1fr;
    }
}

/* Hide additional fields on order confirmation */
.wc-block-order-confirmation-additional-fields-wrapper {
    display: none !important;
}
