/* ══════════════════════════════════════
   TELC Theme — WooCommerce Styles
   Version: 1.6.0
   ══════════════════════════════════════ */

/* ── Full Width Shop Layout (no sidebar) ── */
.shop-full-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-full-layout .page-title {
    text-align: center;
    margin-bottom: 10px;
}

.shop-intro {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Search results no-products */
.no-products {
    text-align: center;
    padding: 60px 20px;
}

.no-products h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 12px;
}

.no-products p {
    font-size: 16px;
    color: #666;
}

.no-products a {
    color: #5C79BC;
    font-weight: 600;
}

/* ── Shop Sidebar ── */
.telc-shop-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-search { margin-bottom: 25px; }

.telc-product-search {
    display: flex;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.telc-product-search input[type="search"] {
    flex: 1;
    border: none;
    padding: 10px 14px;
    font-size: 13px;
    font-family: "Open Sans", Arial, sans-serif;
    outline: none;
    background: #fff;
}

.telc-product-search button {
    background: #5C79BC;
    border: none;
    color: #fff;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.telc-product-search button:hover { background: #4A6199; }

/* Sidebar widgets */
.telc-widget {
    margin-bottom: 25px;
}

.widget-title {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5C79BC;
}

/* Category list */
.sidebar-categories { margin-top: 5px; }

.product-categories {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 500px;
    overflow-y: auto;
}

.product-categories li {
    border-bottom: 1px solid #f0f0f0;
}

.product-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    font-size: 13px;
    color: #555;
    transition: all 0.15s;
}

.product-categories li a:hover {
    background: #f5f7fb;
    color: #5C79BC;
}

.product-categories li.active > a {
    background: #5C79BC;
    color: #fff;
    border-radius: 3px;
}

.product-categories li.active .cat-count { color: rgba(255,255,255,0.8); }

.product-categories .cat-count {
    font-size: 11px;
    color: #aaa;
}

/* ── Shop Page Top Categories ── */
.shop-top-categories {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.shop-cats-title {
    font-family: "Adamina", serif;
    font-size: 22px;
    color: #333;
    margin: 0 0 16px;
}

.shop-all-products-header {
    margin-bottom: 20px;
}

.shop-all-products-header h2 {
    font-family: "Adamina", serif;
    font-size: 22px;
    color: #333;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #5C79BC;
    display: inline-block;
}

/* ── Pagination (hidden — all products load on one page) ── */
nav.woocommerce-pagination {
    display: none;
}

/* ── Shop Controls ── */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.woocommerce-result-count {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.woocommerce-ordering select {
    border: 1px solid #e5e5e5;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 4px;
    font-family: "Open Sans", Arial, sans-serif;
    color: #555;
    background: #fff;
    cursor: pointer;
}

/* ── Product Grid — Override WC defaults ── */
ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    width: 100% !important;
    clear: both;
}

ul.products::before,
ul.products::after {
    display: none !important;
    content: none !important;
}

ul.products li.product {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s;
    position: relative;
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    clear: none !important;
}

ul.products li.product:hover {
    border-color: #5C79BC;
    box-shadow: 0 6px 20px rgba(92,121,188,0.12);
    transform: translateY(-2px);
}

/* Sale Badge */
.telc-sale-badge,
ul.products li.product .onsale,
.onsale {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #EF8F61;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    line-height: 1.4;
    min-width: auto;
    min-height: auto;
}

/* ── Database Status Indicator (blinking green light) ── */
.telc-db-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: #f0faf0;
    border: 1px solid #c8e6c9;
    border-radius: 6px;
}

.telc-db-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    flex-shrink: 0;
    animation: telc-blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.6);
}

@keyframes telc-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(76, 175, 80, 0.6); }
    50% { opacity: 0.3; box-shadow: 0 0 2px rgba(76, 175, 80, 0.2); }
}

.telc-db-text {
    font-size: 12px;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.telc-db-text strong {
    color: #1b5e20;
}

/* ── Accent Button ── */
.btn-accent {
    display: inline-block;
    padding: 12px 28px;
    background: #EF8F61;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-accent:hover {
    background: #e07a48;
    color: #fff;
}

/* ── Single Product ── */
.telc-single-product {
    padding-bottom: 0;
}

.product-category-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5C79BC;
    margin-bottom: 8px;
}

.product-category-link:hover { color: #4A6199; }

.product-top {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
    margin-bottom: 0;
    padding: 40px 0;
    align-items: start;
}

.product-image-col {
    position: relative;
    max-width: 420px;
}

.product-image-col .woocommerce-product-gallery {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.product-image-col .woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.product-image-col .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
    padding: 0;
}

.product-image-col .woocommerce-product-gallery .flex-viewport,
.product-image-col .woocommerce-product-gallery .woocommerce-product-gallery__image {
    width: 100% !important;
}

.product-image-col .woocommerce-product-gallery .woocommerce-product-gallery__image a {
    display: block;
}

.product-image-col .woocommerce-product-gallery .woocommerce-product-gallery__image a img {
    width: 100%;
    height: auto;
}

.product-title {
    font-size: 30px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-price-row {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.product-summary-col .price {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.product-summary-col .price del {
    color: #aaa;
    font-size: 20px;
    font-weight: 400;
    margin-right: 8px;
}

.product-summary-col .price ins {
    text-decoration: none;
    color: #c0392b;
}

.product-short-desc {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Product meta strip */
.product-meta-strip {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 14px 18px;
    background: #f5f7fb;
    border-radius: 6px;
    border: 1px solid #e8ecf4;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.meta-item svg { color: #5C79BC; flex-shrink: 0; }
.meta-item strong { color: #333; }

.product-data-points {
    margin-bottom: 20px;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 4px;
}

.data-point {
    font-size: 13px;
    margin-bottom: 6px;
}
.data-point:last-child { margin-bottom: 0; }

.data-label { font-weight: 600; color: #333; margin-right: 6px; }
.data-value { color: #666; }
.data-value a { color: #5C79BC; }

/* Add to cart */
.product-summary-col .cart {
    margin-bottom: 20px;
}

.product-summary-col .cart .quantity {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.product-summary-col .cart .quantity input {
    width: 60px;
    text-align: center;
    border: 1px solid #e5e5e5;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
}

.product-summary-col .cart .single_add_to_cart_button,
.woocommerce .product-summary-col .single_add_to_cart_button,
.woocommerce button.single_add_to_cart_button,
button.single_add_to_cart_button {
    background: #EF8F61 !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.product-summary-col .cart .single_add_to_cart_button:hover,
.woocommerce button.single_add_to_cart_button:hover,
button.single_add_to_cart_button:hover {
    background: #e07a48 !important;
}

/* Trust badges on product */
.product-trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.trust-badge svg { color: #5C79BC; flex-shrink: 0; }

/* What's Included Strip */
.product-includes-strip {
    background: #f5f7fb;
    padding: 40px 0;
    border-top: 1px solid #e8ecf4;
    border-bottom: 1px solid #e8ecf4;
    margin-bottom: 40px;
}

.includes-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    font-family: "Open Sans", Arial, sans-serif;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.includes-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.includes-item span {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

/* Product Tabs */
.product-tabs-section {
    margin-bottom: 40px;
    padding-top: 10px;
}

.woocommerce-tabs ul.tabs {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0 0 25px;
    padding: 0;
    border-bottom: 2px solid #e5e5e5;
}

.woocommerce-tabs ul.tabs li {
    margin-bottom: -2px;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.woocommerce-tabs ul.tabs li a:hover { color: #333; }

.woocommerce-tabs ul.tabs li.active a {
    color: #5C79BC;
    border-bottom-color: #5C79BC;
}

.woocommerce-tabs .panel {
    font-size: 15px;
    line-height: 1.7;
}

.woocommerce-tabs .panel h2 { font-size: 22px; margin-bottom: 15px; }

/* Related Products */
.related.products {
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.related.products > h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Product bottom CTA */
.product-bottom-cta {
    background: linear-gradient(135deg, #5C79BC 0%, #4A6199 100%);
    padding: 50px 0;
    text-align: center;
    color: #fff;
}

.product-bottom-cta h2 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
}

.product-bottom-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Cart & Checkout ── */
.woocommerce-cart-form table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart-form th,
.woocommerce-cart-form td {
    padding: 14px;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
    font-size: 14px;
}

.woocommerce-cart-form th { font-weight: 600; color: #333; }

.woocommerce-cart-form .product-remove a { color: #c0392b; font-size: 18px; }

.woocommerce .button,
button.button {
    background: #5C79BC;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: "Open Sans", Arial, sans-serif;
}

.woocommerce .button:hover,
button.button:hover { background: #4A6199; }

.woocommerce .button.alt,
button.button.alt {
    background: #EF8F61;
}
.woocommerce .button.alt:hover,
button.button.alt:hover { background: #e07a48; }

/* Checkout form styling */
.woocommerce form .form-row {
    margin-bottom: 16px;
}

.woocommerce form .form-row label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    display: block;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    transition: border-color 0.2s;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #5C79BC;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92,121,188,0.1);
}

/* Order review table */
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.woocommerce-checkout-review-order-table th {
    font-weight: 600;
    color: #333;
    text-align: left;
}

.order-total td { font-weight: 700; font-size: 18px; color: #333; }

/* Cart totals */
.cart_totals {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.cart_totals h2 {
    font-size: 18px;
    margin-bottom: 16px;
}

.cart_totals table {
    width: 100%;
}

.cart_totals table td,
.cart_totals table th {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

/* Place order button */
#place_order {
    background: #EF8F61;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

#place_order:hover { background: #e07a48; }

/* ── Notices ── */
.woocommerce-message,
.woocommerce-info {
    padding: 14px 18px;
    margin-bottom: 20px;
    border-left: 4px solid #5C79BC;
    background: #f5f7fb;
    font-size: 14px;
    border-radius: 0 4px 4px 0;
}

.woocommerce-error {
    padding: 14px 18px;
    margin-bottom: 20px;
    border-left: 4px solid #c0392b;
    background: #fef5f5;
    font-size: 14px;
    border-radius: 0 4px 4px 0;
    list-style: none;
}

/* ── Category Archive Full-Width Layout ── */
.category-archive-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-archive-layout .page-title {
    text-align: center;
    margin-bottom: 10px;
}

.category-archive-layout .category-description {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.category-archive-layout ul.products,
.category-archive-layout ul.products.columns-3,
.category-archive-layout ul.products.columns-4 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
}

/* ===== WC PAGE WRAP (Cart, Checkout) ===== */
.wc-page-wrap {
    padding-top: 30px;
    padding-bottom: 60px;
}
.wc-page-wrap .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.wc-page-title {
    font-family: 'Adamina', serif;
    font-size: 2rem;
    color: #333;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #5C79BC;
}

/* ===== CART PAGE STYLES ===== */
.woocommerce-cart .telc-main {
    padding-top: 0;
}

/* Cart page wrapper */
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

/* Cart page title */
.woocommerce-cart .entry-title,
.woocommerce-cart .page-title {
    font-family: 'Adamina', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #5C79BC;
}

/* WooCommerce notices (removed, added, error) */
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error {
    background: #f0f7f0;
    border: 1px solid #c3e6cb;
    border-left: 4px solid #28a745;
    color: #333;
    padding: 14px 20px;
    margin-bottom: 25px;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.woocommerce-cart .woocommerce-message::before {
    color: #28a745;
}
.woocommerce-cart .woocommerce-info {
    background: #f0f4fa;
    border-color: #b8d4f0;
    border-left-color: #5C79BC;
}
.woocommerce-cart .woocommerce-info::before {
    color: #5C79BC;
}
.woocommerce-cart .woocommerce-error {
    background: #fdf0f0;
    border-color: #f5c6cb;
    border-left-color: #dc3545;
}
.woocommerce-cart .woocommerce-message a,
.woocommerce-cart .woocommerce-info a {
    color: #5C79BC;
    font-weight: 600;
    text-decoration: underline;
}

/* Cart table */
.woocommerce-cart table.shop_table {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 30px;
}
.woocommerce-cart table.shop_table thead {
    background: #f8f9fb;
}
.woocommerce-cart table.shop_table thead th {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
    padding: 14px 18px;
    border-bottom: 2px solid #e5e5e5;
}
.woocommerce-cart table.shop_table td {
    padding: 18px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 0.95rem;
}
.woocommerce-cart table.shop_table tr:last-child td {
    border-bottom: none;
}

/* Product thumbnail in cart */
.woocommerce-cart table.shop_table .product-thumbnail img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
}

/* Product name link */
.woocommerce-cart table.shop_table .product-name a {
    color: #5C79BC;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.woocommerce-cart table.shop_table .product-name a:hover {
    color: #e07a48;
}

/* Remove button */
.woocommerce-cart table.shop_table .product-remove a.remove {
    color: #999 !important;
    font-size: 1.4rem;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    background: transparent;
}
.woocommerce-cart table.shop_table .product-remove a.remove:hover {
    background: #fdf0f0;
    color: #dc3545 !important;
}

/* Quantity input */
.woocommerce-cart table.shop_table .quantity .qty {
    width: 60px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 0.95rem;
}

/* Price styling */
.woocommerce-cart table.shop_table .product-price,
.woocommerce-cart table.shop_table .product-subtotal {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

/* Coupon and actions row */
.woocommerce-cart table.shop_table td.actions {
    padding: 20px 18px;
    background: #f8f9fb;
    border-top: 2px solid #e5e5e5;
}
.woocommerce-cart .coupon {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.woocommerce-cart .coupon label {
    display: none;
}
.woocommerce-cart .coupon #coupon_code {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    width: 200px;
    transition: border-color 0.2s;
}
.woocommerce-cart .coupon #coupon_code:focus {
    border-color: #5C79BC;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92, 121, 188, 0.1);
}
.woocommerce-cart .coupon .button {
    background: #5C79BC;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
}
.woocommerce-cart .coupon .button:hover {
    background: #4a6399;
}
.woocommerce-cart td.actions .button:not(.coupon .button) {
    background: #f0f0f0;
    color: #555;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    float: right;
}
.woocommerce-cart td.actions .button:not(.coupon .button):hover {
    background: #e5e5e5;
    color: #333;
}

/* Cart totals */
.woocommerce-cart .cart-collaterals {
    margin-top: 10px;
}
.woocommerce-cart .cart_totals {
    float: right;
    width: 420px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.woocommerce-cart .cart_totals h2 {
    font-family: 'Adamina', serif;
    font-size: 1.4rem;
    color: #333;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #5C79BC;
}
.woocommerce-cart .cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}
.woocommerce-cart .cart_totals table th {
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-align: left;
    width: 40%;
}
.woocommerce-cart .cart_totals table td {
    text-align: right;
    color: #333;
}
.woocommerce-cart .cart_totals .order-total th {
    font-size: 1rem;
    color: #333;
}
.woocommerce-cart .cart_totals .order-total td {
    font-size: 1.3rem;
    font-weight: 700;
    color: #EF8F61;
}
.woocommerce-cart .cart_totals .order-total td .amount {
    color: #EF8F61;
}

/* Proceed to Checkout button */
.woocommerce-cart .wc-proceed-to-checkout {
    padding: 0;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: block;
    width: 100%;
    background: #EF8F61;
    color: #fff;
    text-align: center;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    box-sizing: border-box;
    margin-bottom: 0;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: #e07a48;
    transform: translateY(-1px);
}

/* Hide or style alternative payment buttons */
.woocommerce-cart .wc-proceed-to-checkout .wc-stripe-checkout-separator,
.woocommerce-cart .wc-proceed-to-checkout #wc-stripe-payment-request-wrapper {
    margin-top: 15px;
}
.woocommerce-cart .wc-proceed-to-checkout .wc-stripe-checkout-separator {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}

/* Payment link button styling */
.woocommerce-cart .wc-proceed-to-checkout a:not(.checkout-button) {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-sizing: border-box;
    margin-top: 10px;
    border: 2px solid #e5e5e5;
    background: #fff;
    color: #555;
    transition: all 0.2s;
}
.woocommerce-cart .wc-proceed-to-checkout a:not(.checkout-button):hover {
    border-color: #5C79BC;
    color: #5C79BC;
}

/* Two-column layout: cart table + totals */
.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper + form + .cart-collaterals {
    clear: both;
}

/* Empty cart state */
.woocommerce-cart .cart-empty.woocommerce-info {
    background: #f0f4fa;
    border: 1px solid #b8d4f0;
    border-left: 4px solid #5C79BC;
    padding: 20px 25px;
    border-radius: 6px;
    color: #555;
    font-size: 1rem;
    text-align: center;
}
.woocommerce-cart .cart-empty.woocommerce-info::before {
    color: #5C79BC;
}
.woocommerce-cart .return-to-shop .button,
.woocommerce-cart a.button.wc-backward {
    display: inline-block;
    background: #5C79BC;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
}
.woocommerce-cart .return-to-shop .button:hover,
.woocommerce-cart a.button.wc-backward:hover {
    background: #4a6399;
    transform: translateY(-1px);
}

/* Cart responsive */
@media (max-width: 768px) {
    .woocommerce-cart .cart_totals {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .woocommerce-cart .coupon {
        width: 100%;
    }
    .woocommerce-cart .coupon #coupon_code {
        width: 100%;
        max-width: 200px;
    }
    .woocommerce-cart td.actions .button:not(.coupon .button) {
        float: none;
        display: block;
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
    .woocommerce-cart table.shop_table thead {
        display: none;
    }
    .woocommerce-cart table.shop_table tr {
        display: flex;
        flex-wrap: wrap;
        padding: 15px;
        border-bottom: 1px solid #e5e5e5;
    }
    .woocommerce-cart table.shop_table td {
        border: none;
        padding: 5px 10px;
    }
}

/* ===== CHECKOUT PAGE STYLES ===== */
.woocommerce-checkout .wc-checkout-wrap {
    padding-top: 30px;
}

/* Checkout notices */
.woocommerce-checkout .woocommerce-info {
    background: #f0f4fa;
    border: 1px solid #b8d4f0;
    border-left: 4px solid #5C79BC;
    padding: 14px 20px;
    border-radius: 6px;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 25px;
}
.woocommerce-checkout .woocommerce-info::before {
    color: #5C79BC;
}
.woocommerce-checkout .woocommerce-info a {
    color: #5C79BC;
    font-weight: 600;
}

/* Checkout form sections */
.woocommerce-checkout .col2-set {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    flex: 1;
}
.woocommerce-checkout h3 {
    font-family: 'Adamina', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

/* Checkout form fields */
.woocommerce-checkout .form-row {
    margin-bottom: 15px;
}
.woocommerce-checkout .form-row label {
    display: block;
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 6px;
}
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: #5C79BC;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92, 121, 188, 0.1);
}

/* Order review table */
.woocommerce-checkout #order_review_heading {
    font-family: 'Adamina', serif;
    font-size: 1.3rem;
    color: #333;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}
.woocommerce-checkout table.shop_table {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 25px;
}
.woocommerce-checkout table.shop_table thead th {
    background: #f8f9fb;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
    padding: 14px 18px;
    border-bottom: 2px solid #e5e5e5;
}
.woocommerce-checkout table.shop_table td,
.woocommerce-checkout table.shop_table th {
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
}
.woocommerce-checkout table.shop_table .order-total th {
    font-weight: 700;
    color: #333;
}
.woocommerce-checkout table.shop_table .order-total td {
    font-weight: 700;
    font-size: 1.2rem;
    color: #EF8F61;
}

/* Payment methods */
.woocommerce-checkout #payment {
    background: #f8f9fb;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
}
.woocommerce-checkout #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    border-bottom: 1px solid #e5e5e5;
}
.woocommerce-checkout #payment ul.payment_methods li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.woocommerce-checkout #payment ul.payment_methods li:last-child {
    border-bottom: none;
}
.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 600;
    color: #333;
    cursor: pointer;
}
.woocommerce-checkout #payment .payment_box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 15px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* Place order button */
.woocommerce-checkout #place_order {
    display: block;
    width: 100%;
    background: #EF8F61;
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.woocommerce-checkout #place_order:hover {
    background: #e07a48;
    transform: translateY(-1px);
}

/* Checkout responsive */
@media (max-width: 768px) {
    .woocommerce-checkout .col2-set {
        flex-direction: column;
        gap: 20px;
    }
    .woocommerce-checkout #payment {
        padding: 15px;
    }
}

/* Product grid responsive - tablet: 2 columns */
@media (max-width: 768px) {
    ul.products,
    ul.products.columns-3,
    ul.products.columns-4,
    .category-archive-layout ul.products,
    .category-archive-layout ul.products.columns-3,
    .category-archive-layout ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* Product grid responsive - mobile: 1 column */
@media (max-width: 480px) {
    ul.products,
    ul.products.columns-3,
    ul.products.columns-4,
    .category-archive-layout ul.products,
    .category-archive-layout ul.products.columns-3,
    .category-archive-layout ul.products.columns-4 {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* ── Featured National Product Card ── */
.featured-national-product {
    background: #fff;
    border: 2px solid #5C79BC;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.fnp-badge {
    background: #5C79BC;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    text-align: center;
    font-family: "Open Sans", Arial, sans-serif;
}

.fnp-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 24px;
    align-items: center;
}

.fnp-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.fnp-title {
    font-size: 22px;
    margin: 0 0 8px;
    line-height: 1.3;
}

.fnp-title a {
    color: #333;
    text-decoration: none;
}

.fnp-title a:hover {
    color: #5C79BC;
}

.fnp-records {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #5C79BC;
    margin-bottom: 10px;
}

.fnp-price {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
}

.fnp-price del {
    color: #aaa;
    font-size: 16px;
    font-weight: 400;
    margin-right: 8px;
}

.fnp-price ins {
    text-decoration: none;
    color: #c0392b;
}

.fnp-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    margin-bottom: 18px;
}

.fnp-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
}

.fnp-features span svg {
    flex-shrink: 0;
}

.fnp-cta {
    display: inline-block;
    background: #EF8F61;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.fnp-cta:hover {
    background: #e07a48;
    color: #fff;
}

/* State Lists Header */
.state-lists-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #5C79BC;
}

.state-lists-header h2 {
    font-size: 20px;
    margin: 0 0 4px;
    color: #333;
}

.state-lists-header p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Subcategory Cards */
.subcategory-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.subcat-card {
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
    background: #f5f7fb;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}

.subcat-card:hover {
    border-color: #5C79BC;
    background: #fff;
}

.subcat-card strong {
    font-size: 14px;
    color: #333;
}

.subcat-card span {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* ── Star ratings ── */
.star-rating {
    color: #EF8F61;
    font-size: 14px;
}

/* ── Hide default WC sidebar widgets ── */
.shop-sidebar-col .widget_product_search,
.shop-sidebar-col .widget_search { display: none; }

/* ── Custom TELC Product Cards ── */
.telc-product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s;
    position: relative;
    cursor: pointer;
}

.telc-product-card:hover {
    border-color: #5C79BC;
    box-shadow: 0 6px 20px rgba(92,121,188,0.12);
    transform: translateY(-2px);
}

/* Overlay link — makes entire card clickable */
.telc-card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    text-decoration: none;
    color: transparent;
    font-size: 0;
}

.telc-card-link-overlay {
    display: block;
    width: 100%;
    height: 100%;
}

.telc-card-image {
    background: #f9f9f9;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.telc-card-image img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.telc-card-body {
    padding: 14px 16px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.telc-card-title {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.4;
}

.telc-card-records {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #5C79BC;
    margin-bottom: 8px;
}

.telc-card-meta {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}

.telc-card-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.telc-card-footer {
    padding: 0 16px 10px;
}

.telc-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.telc-card-price del {
    color: #aaa;
    font-size: 13px;
    font-weight: 400;
    margin-right: 4px;
}

.telc-card-price ins {
    text-decoration: none;
    color: #c0392b;
    font-weight: 700;
}

.telc-card-action {
    padding: 0 16px 16px;
}

.telc-card-btn {
    display: block;
    padding: 10px;
    text-align: center;
    background: #5C79BC;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background 0.2s;
    text-decoration: none;
}

.telc-card-btn:hover {
    background: #4A6199;
    color: #fff;
}

/* Button sits above the overlay link */
.telc-card-action {
    position: relative;
    z-index: 2;
}

/* Sale badge on card */
.telc-product-card .telc-sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #EF8F61;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.telc-product-card .telc-preorder-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #E8913A;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.telc-card-meta-item.telc-meta-preorder {
    color: #E8913A;
}

/* Legacy card image fix (fallback) */
ul.products li.product a img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: #f9f9f9;
    padding: 10px;
}

/* Legacy card equal height */
ul.products li.product {
    min-height: 0;
}

ul.products li.product .woocommerce-loop-product__link {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Legacy add to cart button */
ul.products li.product a.add_to_cart_button,
ul.products li.product a.product_type_simple,
ul.products li.product a.product_type_variable,
ul.products li.product a.button {
    display: block;
    margin: auto 14px 14px;
    padding: 10px;
    text-align: center;
    background: #5C79BC;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background 0.2s;
}

ul.products li.product a.add_to_cart_button:hover,
ul.products li.product a.button:hover {
    background: #4A6199;
    color: #fff;
}

/* ── WC default columns override ── */
ul.products.columns-1,
ul.products.columns-2,
ul.products.columns-3,
ul.products.columns-4,
ul.products.columns-5 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    float: none !important;
}

ul.products.columns-1 li.product,
ul.products.columns-2 li.product,
ul.products.columns-3 li.product,
ul.products.columns-4 li.product,
ul.products.columns-5 li.product {
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* ── Fix WC price alignment ── */
ul.products li.product .price {
    margin-top: auto;
}

/* ── Product Fields Preview ── */
.product-fields-preview {
    margin-bottom: 20px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e8ecf4;
    border-radius: 6px;
}

.product-fields-preview h2 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    margin: 0 0 10px;
}

.fields-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.field-tag {
    display: inline-block;
    padding: 5px 10px;
    background: #f5f7fb;
    border: 1px solid #e8ecf4;
    border-radius: 4px;
    font-size: 12px;
    color: #555;
    white-space: nowrap;
}

/* ── How It Works (replaces Common Data Fields) ── */
.telc-how-it-works {
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e8ecf4;
    border-radius: 6px;
}
.telc-how-it-works h2 {
    font-size: 18px;
    font-weight: 700;
    color: #e65100;
    margin: 0 0 4px;
    text-align: center;
}
.telc-how-it-works .how-subtitle {
    font-size: 13px;
    color: #777;
    text-align: center;
    margin: 0 0 16px;
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.how-step {
    text-align: center;
    padding: 16px 10px;
    border: 2px solid #e65100;
    border-radius: 8px;
    background: #fff;
}
.how-step-num {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #e65100;
    margin-bottom: 6px;
}
.how-step strong {
    display: block;
    font-size: 13px;
    color: #333;
    margin-bottom: 4px;
}
.how-step p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}
@media (max-width: 480px) {
    .how-steps {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ── Free Sample CTA (below product image) ── */
.product-sample-cta {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fb 0%, #eef1f8 100%);
    border: 1px solid #d8dfe8;
    border-radius: 8px;
    text-align: center;
}

.product-sample-cta h2 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px;
}

.product-sample-cta p {
    font-size: 13px;
    color: #666;
    margin: 0 0 14px;
    line-height: 1.5;
}

/* ── Product Description Section (cleaned content) ── */
.product-description-section {
    margin-bottom: 40px;
    padding: 30px 0;
}

.product-description-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.product-description-content h2 {
    font-size: 22px;
    color: #333;
    margin: 30px 0 12px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.product-description-content h3 {
    font-size: 18px;
    color: #333;
    margin: 24px 0 10px;
}

.product-description-content h5 {
    font-size: 15px;
    color: #333;
    margin: 20px 0 8px;
}

.product-description-content p {
    margin-bottom: 14px;
}

.product-description-content ul {
    margin: 10px 0 20px 20px;
}

.product-description-content ul li {
    margin-bottom: 6px;
}

.product-description-content a {
    color: #5C79BC;
}

.product-description-content a:hover {
    color: #4A6199;
}

/* Hide old Divi-style buttons in content */
.product-description-content .btn-primary {
    display: inline-block;
    background: #5C79BC;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.product-description-content .btn-primary:hover {
    background: #4A6199;
    color: #fff;
}

/* ── Related Products Section ── */
.related-products-section {
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    margin-bottom: 40px;
}

.related-products-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.related-view-all {
    text-align: center;
    margin-top: 24px;
}

/* ── Outline Button ── */
.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #5C79BC;
    color: #5C79BC;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    background: transparent;
}

.btn-outline:hover {
    background: #5C79BC;
    color: #fff;
}

/* ══════════════════════════════════════
   MY ACCOUNT PAGE
   ══════════════════════════════════════ */

.woocommerce-account .woocommerce {
    padding: 10px 0;
}

/* Navigation tabs */
.woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid #e5e5e5;
    background: #f9f9f9;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    white-space: nowrap;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    color: #5C79BC;
    border-bottom-color: #5C79BC;
    background: #fff;
}

/* Account content area */
.woocommerce-MyAccount-content {
    padding: 10px 0;
}

.woocommerce-MyAccount-content > p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.woocommerce-MyAccount-content > p a {
    color: #5C79BC;
    font-weight: 600;
}

/* Orders & Downloads tables */
.woocommerce-MyAccount-content table.woocommerce-orders-table,
.woocommerce-MyAccount-content table.woocommerce-table,
.woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.woocommerce-MyAccount-content table th {
    background: #f5f7fb;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
    text-align: left;
    border-bottom: 2px solid #e5e5e5;
}

.woocommerce-MyAccount-content table td {
    padding: 14px 18px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.woocommerce-MyAccount-content table td a.woocommerce-button,
.woocommerce-MyAccount-content table td a.button {
    display: inline-block;
    padding: 8px 16px;
    background: #5C79BC;
    color: #fff !important;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background 0.2s;
}

.woocommerce-MyAccount-content table td a.woocommerce-button:hover,
.woocommerce-MyAccount-content table td a.button:hover {
    background: #4A6199;
    color: #fff !important;
}

/* Addresses */
.woocommerce-MyAccount-content .woocommerce-Addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.woocommerce-MyAccount-content .woocommerce-Address {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 24px;
}

.woocommerce-MyAccount-content .woocommerce-Address header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #5C79BC;
}

.woocommerce-MyAccount-content .woocommerce-Address header h3 {
    font-size: 16px;
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 700;
}

.woocommerce-MyAccount-content .woocommerce-Address address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* Edit account form */
.woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    padding: 0 10px;
}

/* Login & Register forms */
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px;
    max-width: 480px;
}

.woocommerce-account .u-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.woocommerce-account .u-columns .woocommerce-form-login,
.woocommerce-account .u-columns .woocommerce-form-register {
    max-width: none;
}

.woocommerce-account .woocommerce-form-login h2,
.woocommerce-account .woocommerce-form-register h2 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #5C79BC;
}

.woocommerce-account .woocommerce-form-login label,
.woocommerce-account .woocommerce-form-register label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.woocommerce-account .woocommerce-form-login input[type="text"],
.woocommerce-account .woocommerce-form-login input[type="email"],
.woocommerce-account .woocommerce-form-login input[type="password"],
.woocommerce-account .woocommerce-form-register input[type="text"],
.woocommerce-account .woocommerce-form-register input[type="email"],
.woocommerce-account .woocommerce-form-register input[type="password"],
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.woocommerce-account input[type="text"]:focus,
.woocommerce-account input[type="email"]:focus,
.woocommerce-account input[type="password"]:focus {
    border-color: #5C79BC;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92,121,188,0.1);
}

.woocommerce-account .woocommerce-Button,
.woocommerce-account .woocommerce-button,
.woocommerce-account button[type="submit"] {
    background: #EF8F61;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: "Open Sans", Arial, sans-serif;
}

.woocommerce-account .woocommerce-Button:hover,
.woocommerce-account .woocommerce-button:hover,
.woocommerce-account button[type="submit"]:hover {
    background: #e07a48;
}

.woocommerce-account .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    margin: 10px 0;
}

.woocommerce-account .woocommerce-LostPassword {
    margin-top: 16px;
}

.woocommerce-account .woocommerce-LostPassword a {
    font-size: 13px;
    color: #5C79BC;
}

/* ── TELC Auth Wrapper (Login/Register) ── */
.telc-auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 20px 0 40px;
}

.telc-auth-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.telc-auth-card h2 {
    font-family: "Adamina", Georgia, serif;
    font-size: 24px;
    color: #333;
    margin: 0 0 6px;
}

.telc-auth-subtitle {
    font-size: 14px;
    color: #777;
    margin: 0 0 24px;
    line-height: 1.5;
}

/* Form fields */
.telc-form-field {
    margin-bottom: 18px;
}

.telc-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.telc-form-field label .required {
    color: #e74c3c;
}

.telc-form-field input[type="text"],
.telc-form-field input[type="email"],
.telc-form-field input[type="password"],
.telc-form-field input[type="tel"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    background: #fafafa;
}

.telc-form-field input:focus {
    border-color: #5C79BC;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92,121,188,0.12);
}

/* Two-col row for first/last name */
.telc-form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Split row for remember/forgot */
.telc-form-row-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0 20px;
}

.telc-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.telc-checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: #5C79BC;
    flex-shrink: 0;
}

.telc-forgot-link {
    font-size: 13px;
    color: #5C79BC;
    text-decoration: none;
    font-weight: 500;
}

.telc-forgot-link:hover {
    text-decoration: underline;
}

/* SMS consent section */
.telc-sms-consent {
    background: #f8f9fc;
    border: 1px solid #e0e4ed;
    border-radius: 8px;
    padding: 14px;
    margin: 16px 0;
}

.telc-sms-consent .telc-checkbox-label span {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.telc-terms-consent {
    margin: 12px 0 20px;
}

.telc-terms-consent a {
    color: #5C79BC;
    text-decoration: underline;
}

/* Auth buttons */
.telc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Open Sans", Arial, sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.telc-btn-primary {
    background: #5C79BC;
    color: #fff;
}

.telc-btn-primary:hover {
    background: #4A6199;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(92,121,188,0.3);
}

.telc-btn-accent {
    background: #EF8F61;
    color: #fff;
}

.telc-btn-accent:hover {
    background: #e07a48;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239,143,97,0.3);
}

.telc-btn-sm {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #5C79BC;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.telc-btn-sm:hover {
    background: #4A6199;
    color: #fff;
}

.telc-tcpa-notice {
    font-size: 11px;
    color: #999;
    line-height: 1.5;
    margin-top: 16px;
    text-align: center;
}

/* ── TELC Dashboard (Logged-in) ── */
.telc-dashboard-welcome {
    margin-bottom: 36px;
    text-align: center;
}

.telc-dashboard-welcome h2 {
    font-family: "Adamina", Georgia, serif;
    font-size: 30px;
    color: #1a2a44;
    margin: 0 0 8px;
}

.telc-dashboard-welcome p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.telc-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.telc-dash-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px 24px;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
}

.telc-dash-card:hover {
    border-color: #5C79BC;
    box-shadow: 0 8px 24px rgba(92,121,188,0.15);
    transform: translateY(-3px);
}

.telc-dash-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4fb;
    border-radius: 16px;
    flex-shrink: 0;
    margin-bottom: 16px;
    color: #5C79BC;
}

.telc-dash-card:hover .telc-dash-card-icon {
    background: #5C79BC;
    color: #fff;
}

.telc-dash-card-body {
    margin-bottom: 16px;
}

.telc-dash-card-body h3 {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a2a44;
    margin: 0 0 4px;
}

.telc-dash-card-body p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.telc-dash-card-stat {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #5C79BC;
    line-height: 1.2;
    margin-bottom: 2px;
}

.telc-dash-card-cta {
    display: inline-block;
    padding: 8px 22px;
    background: #EF8F61;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}

.telc-dash-card:hover .telc-dash-card-cta {
    background: #e07a48;
}

/* Primary cards (Orders & Downloads) get extra emphasis */
.telc-dash-card-primary {
    border-color: #d4dff0;
    background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}

.telc-dash-card-primary .telc-dash-card-icon {
    width: 72px;
    height: 72px;
    background: #5C79BC;
    color: #fff;
}

.telc-dash-card-primary:hover .telc-dash-card-icon {
    background: #4a67a8;
}

/* Logout card — subdued */
.telc-dash-card-logout {
    border-style: dashed;
    border-color: #ddd;
}

.telc-dash-card-logout .telc-dash-card-icon {
    background: #f5f5f5;
    color: #999;
}

.telc-dash-card-logout .telc-dash-card-cta {
    background: #ddd;
    color: #666;
}

.telc-dash-card-logout:hover {
    border-color: #e74c3c;
}

.telc-dash-card-logout:hover .telc-dash-card-icon {
    background: #e74c3c;
    color: #fff;
}

.telc-dash-card-logout:hover .telc-dash-card-cta {
    background: #e74c3c;
    color: #fff;
}

/* Recent Downloads section */
.telc-dashboard-recent {
    background: #f9fafb;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 32px;
}

.telc-dashboard-recent h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 18px;
    color: #1a2a44;
}

.telc-recent-download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.telc-recent-download-item:last-child {
    border-bottom: none;
}

.telc-recent-download-info strong {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 3px;
}

.telc-recent-download-info span {
    font-size: 13px;
    color: #999;
}

/* ── Checkout SMS Consent ── */
.telc-checkout-consent {
    background: #f8f9fc;
    border: 1px solid #e0e4ed;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.telc-checkout-consent label {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* ── Override old WC login/register floats ── */
#customer_login {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
}

#customer_login .col-1,
#customer_login .col-2 {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide old-style WC columns if still rendered */
.woocommerce-account .u-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
}

.woocommerce-account .u-columns > .u-column1,
.woocommerce-account .u-columns > .u-column2 {
    float: none !important;
    width: 100% !important;
}

/* ── Responsive Auth & Dashboard ── */
@media (max-width: 768px) {
    .telc-auth-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .telc-dashboard-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .telc-dash-card {
        padding: 20px 16px 18px;
    }

    .telc-dash-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
    }

    .telc-dash-card-primary .telc-dash-card-icon {
        width: 60px;
        height: 60px;
    }

    .telc-dash-card-body h3 {
        font-size: 16px;
    }

    .telc-dash-card-stat {
        font-size: 24px;
    }

    .telc-form-row-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #customer_login,
    .woocommerce-account .u-columns {
        grid-template-columns: 1fr !important;
    }

    .woocommerce-MyAccount-content .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .telc-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .telc-auth-card {
        padding: 24px 20px;
    }
}

/* ══════════════════════════════════════
   CHECKOUT & CART
   ══════════════════════════════════════ */

/* ── Cart Page ── */
.woocommerce-cart .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
}

.woocommerce table.shop_table thead {
    background: #f5f7fb;
}

.woocommerce table.shop_table th {
    padding: 14px 18px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    border-bottom: 2px solid #e5e5e5;
    text-align: left;
}

.woocommerce table.shop_table td {
    padding: 16px 18px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.woocommerce table.shop_table tr:last-child td {
    border-bottom: none;
}

.woocommerce table.shop_table .product-thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid #eee;
}

.woocommerce table.shop_table .product-name a {
    color: #333;
    font-weight: 600;
    font-size: 15px;
}
.woocommerce table.shop_table .product-name a:hover {
    color: #5C79BC;
}

.woocommerce table.shop_table .product-price .amount,
.woocommerce table.shop_table .product-subtotal .amount {
    font-weight: 700;
    color: #333;
    font-size: 15px;
}

.woocommerce table.shop_table .product-quantity .quantity input {
    width: 60px;
    padding: 8px 10px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.woocommerce table.shop_table .product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    font-size: 18px;
    transition: all 0.2s;
    text-decoration: none;
}
.woocommerce table.shop_table .product-remove a:hover {
    background: #c0392b;
    color: #fff;
}

/* Cart actions */
.woocommerce table.shop_table td.actions {
    padding: 20px 18px;
    background: #f9f9f9;
}

.woocommerce .coupon {
    display: flex;
    gap: 8px;
    align-items: center;
}
.woocommerce .coupon label { display: none; }

.woocommerce .coupon input.input-text {
    padding: 10px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    width: 200px;
}
.woocommerce .coupon input.input-text:focus {
    border-color: #5C79BC;
    outline: none;
}

.woocommerce .coupon button,
.woocommerce button[name="update_cart"] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s;
}

.woocommerce .coupon button {
    background: #5C79BC;
    color: #fff;
}
.woocommerce .coupon button:hover { background: #4A6199; }

.woocommerce button[name="update_cart"] {
    background: #f0f0f0;
    color: #555;
    float: right;
}
.woocommerce button[name="update_cart"]:hover { background: #e0e0e0; }
.woocommerce button[name="update_cart"]:disabled { opacity: 0.5; cursor: not-allowed; }

/* Cart totals */
.woocommerce .cart_totals {
    max-width: 450px;
    margin-left: auto;
    background: #f5f7fb;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #e5e5e5;
}

.woocommerce .cart_totals h2 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #5C79BC;
}

.woocommerce .cart_totals table { width: 100%; border-collapse: collapse; }

.woocommerce .cart_totals table th {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.woocommerce .cart_totals table td {
    padding: 12px 0;
    font-size: 14px;
    color: #555;
    text-align: right;
    border-bottom: 1px solid #e5e5e5;
}

.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    border-bottom: none;
    padding-top: 16px;
}
.woocommerce .cart_totals .order-total .amount { color: #5C79BC; }

.woocommerce .cart_totals .wc-proceed-to-checkout { margin-top: 20px; }

.woocommerce .cart_totals .wc-proceed-to-checkout a {
    display: block;
    width: 100%;
    padding: 16px;
    background: #EF8F61;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.woocommerce .cart_totals .wc-proceed-to-checkout a:hover { background: #e07a48; }

/* Empty cart */
.woocommerce .cart-empty {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: #888;
}

.woocommerce .return-to-shop a {
    display: inline-block;
    padding: 14px 32px;
    background: #5C79BC;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: background 0.2s;
}
.woocommerce .return-to-shop a:hover { background: #4A6199; }

/* ── Checkout Page ── */
.woocommerce-checkout .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.woocommerce-checkout .col2-set h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5C79BC;
}

.woocommerce-checkout .form-row {
    margin-bottom: 16px;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-family: "Open Sans", Arial, sans-serif;
}

.woocommerce-checkout .form-row label .required { color: #c0392b; }
.woocommerce-checkout .form-row label .optional { font-weight: 400; color: #999; font-size: 12px; }

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: border-color 0.2s;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: #5C79BC;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92,121,188,0.1);
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    display: inline-block;
    width: 48%;
}
.woocommerce-checkout .form-row-first { float: left; }
.woocommerce-checkout .form-row-last { float: right; }
.woocommerce-checkout .form-row-wide { clear: both; }

.woocommerce-checkout .select2-container .select2-selection--single {
    height: auto;
    min-height: 45px;
    display: flex;
    align-items: center;
}

/* Order review */
.woocommerce-checkout #order_review_heading {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #5C79BC;
}

.woocommerce-checkout .woocommerce-checkout-review-order {
    background: #f5f7fb;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    border: none;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table thead th {
    padding: 12px 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    border-bottom: 2px solid #e5e5e5;
    background: transparent;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table td {
    padding: 14px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #e5e5e5;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table .product-name { font-weight: 600; color: #333; }
.woocommerce-checkout table.woocommerce-checkout-review-order-table .product-total { text-align: right; font-weight: 600; }

.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot th {
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: left;
    background: transparent;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #e5e5e5;
}
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot td { text-align: right; font-weight: 600; }

.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot .order-total td {
    font-size: 18px;
    color: #333;
    border-bottom: none;
    padding-top: 18px;
}
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot .order-total .amount {
    color: #5C79BC;
    font-size: 20px;
}

/* Payment */
.woocommerce-checkout #payment {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin-top: 20px;
    overflow: hidden;
}

.woocommerce-checkout #payment ul.payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e5e5e5;
}

.woocommerce-checkout #payment ul.payment_methods li {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.woocommerce-checkout #payment ul.payment_methods li:last-child { border-bottom: none; }

.woocommerce-checkout #payment ul.payment_methods li label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}
.woocommerce-checkout #payment ul.payment_methods li label img { max-height: 24px; width: auto; }

.woocommerce-checkout #payment .payment_box {
    padding: 16px 20px;
    background: #f9f9f9;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}

.woocommerce-checkout #payment .place-order { padding: 20px; }

.woocommerce-checkout #payment #place_order {
    display: block;
    width: 100%;
    padding: 18px;
    background: #EF8F61;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
}
.woocommerce-checkout #payment #place_order:hover { background: #e07a48; }

/* Checkout notices */
.woocommerce-checkout .woocommerce-info {
    padding: 14px 18px;
    background: #f5f7fb;
    border-left: 4px solid #5C79BC;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}
.woocommerce-checkout .woocommerce-info a { color: #5C79BC; font-weight: 600; }

.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .woocommerce-form-coupon {
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin-bottom: 25px;
}

/* Order received */
.woocommerce-order-received .woocommerce { max-width: 800px; margin: 0 auto; padding: 40px 20px; }

.woocommerce-order-received .woocommerce-thankyou-order-received {
    padding: 20px 24px;
    background: #f0f8f0;
    border: 1px solid #c8e6c9;
    border-radius: 6px;
    color: #2e7d32;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.woocommerce-order-received .woocommerce-order-overview {
    list-style: none;
    margin: 0 0 30px;
    padding: 25px;
    background: #f5f7fb;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

/* WooCommerce global notices */
.woocommerce-message {
    padding: 14px 18px;
    background: #f0f8f0;
    border-left: 4px solid #4caf50;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}
.woocommerce-message a { color: #5C79BC; font-weight: 600; }

.woocommerce-error {
    list-style: none;
    padding: 14px 18px;
    background: #fef5f5;
    border-left: 4px solid #c0392b;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    color: #c0392b;
    margin: 0 0 20px;
}

/* My Account info messages */
.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-info {
    padding: 20px 24px;
    background: #f5f7fb;
    border-left: 4px solid #5C79BC;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* ── Fields Subtitle ── */
.fields-subtitle {
    font-size: 12px;
    color: #888;
    margin: 0 0 10px;
    font-style: italic;
}

/* ── Trust Disclaimer ── */
.trust-disclaimer {
    display: block;
    font-size: 10px;
    color: #999;
    font-weight: 400;
    margin-top: 2px;
}

/* ── Free Sample Form (summary position) ── */
.product-sample-cta.summary-cta {
    margin-top: 24px;
    border-top: 1px solid #eee;
    padding-top: 24px;
}

.sample-request-form {
    text-align: left;
}

.sample-form-fields {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.sample-form-fields input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.sample-form-fields input:focus {
    border-color: #5C79BC;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92,121,188,0.1);
}

.sample-submit-btn {
    width: 100%;
    padding: 14px !important;
    font-size: 15px !important;
}

.sample-privacy {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin: 8px 0 0;
}

/* ══════════════════════════════════════
   SHOP DIRECTORY PAGE
   ══════════════════════════════════════ */

.shop-directory .shop-intro {
    max-width: 750px;
}

/* Featured Nationwide Banner */
.shop-featured-section {
    margin-bottom: 40px;
}

.featured-banner {
    background: linear-gradient(135deg, #5C79BC 0%, #4A6199 100%);
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    color: #fff;
}

.featured-banner-content {
    padding: 36px 40px;
}

.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.15);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.featured-banner-content h2 {
    font-size: 28px;
    color: #fff;
    margin: 0 0 10px;
}

.featured-banner-content p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0 0 20px;
    max-width: 450px;
    line-height: 1.6;
}

.featured-banner-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 36px 40px;
    background: rgba(0,0,0,0.1);
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.stat-item span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Section Titles */
.shop-section-title {
    font-family: "Adamina", serif;
    font-size: 22px;
    color: #333;
    margin: 0 0 6px;
}

.shop-section-subtitle {
    font-size: 14px;
    color: #888;
    margin: 0 0 20px;
}

/* Specialty Links Grid */
.shop-specialty-section {
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid #e5e5e5;
}

.specialty-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.specialty-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    font-size: 13px;
    color: #555;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.15s;
}

.specialty-link:hover {
    background: #f5f7fb;
    border-color: #5C79BC;
    color: #5C79BC;
}

.specialty-count {
    font-size: 11px;
    color: #aaa;
    font-weight: 600;
}

/* Trust Strip */
.shop-trust-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 24px 0;
    margin: 10px 0 30px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

/* Shop CTA Section */
.shop-cta-section {
    margin-bottom: 40px;
}

.shop-cta-inner {
    background: linear-gradient(135deg, #f5f7fb 0%, #eef1f8 100%);
    border: 1px solid #d8dfe8;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.shop-cta-inner h2 {
    font-size: 24px;
    color: #333;
    margin: 0 0 10px;
}

.shop-cta-inner p {
    font-size: 15px;
    color: #666;
    margin: 0 0 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.shop-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ══════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════ */

.woocommerce-cart .telc-main {
    padding-bottom: 40px;
}

.woocommerce-cart .container {
    max-width: 1100px;
}

/* Cart table */
.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #fff;
}

.woocommerce table.shop_table th {
    background: #f5f7fb;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
    border-bottom: 2px solid #e5e5e5;
    text-align: left;
}

.woocommerce table.shop_table td {
    padding: 16px 18px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #444;
    vertical-align: middle;
}

.woocommerce table.shop_table td.product-name a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce table.shop_table td.product-name a:hover {
    color: #5C79BC;
}

.woocommerce table.shop_table td.product-thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid #eee;
}

.woocommerce table.shop_table td.product-remove a {
    color: #ccc;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.2s;
}

.woocommerce table.shop_table td.product-remove a:hover {
    color: #c0392b;
}

.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
    font-weight: 600;
    color: #333;
}

/* Quantity input in cart */
.woocommerce table.shop_table .quantity input {
    width: 60px;
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Coupon section */
.woocommerce .coupon {
    display: flex;
    gap: 8px;
    align-items: center;
}

.woocommerce .coupon input {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    width: 200px;
}

/* Update cart button */
.woocommerce button[name="update_cart"] {
    background: #f5f5f5 !important;
    color: #555 !important;
    border: 1px solid #ddd !important;
    font-size: 13px;
}

.woocommerce button[name="update_cart"]:hover {
    background: #eee !important;
}

/* Cart actions row */
.woocommerce .actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: #f9f9f9;
}

/* Cart collaterals (totals sidebar) */
.cart-collaterals {
    max-width: 450px;
    margin-left: auto;
}

.cart_totals {
    background: #fff;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cart_totals h2 {
    font-size: 18px;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #5C79BC;
}

.cart_totals table {
    width: 100%;
}

.cart_totals table th {
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    padding: 12px 0;
}

.cart_totals table td {
    text-align: right;
    font-size: 14px;
    color: #333;
    padding: 12px 0;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    border-top: 2px solid #e5e5e5;
    padding-top: 16px;
}

/* Proceed to checkout */
.wc-proceed-to-checkout {
    margin-top: 20px;
}

.wc-proceed-to-checkout a.checkout-button {
    display: block;
    background: #EF8F61 !important;
    color: #fff !important;
    text-align: center;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.wc-proceed-to-checkout a.checkout-button:hover {
    background: #e07a48 !important;
}

/* Empty cart */
.cart-empty {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: #666;
}

.return-to-shop a {
    display: inline-block;
    background: #5C79BC;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    margin-top: 16px;
    transition: background 0.2s;
}

.return-to-shop a:hover {
    background: #4A6199;
}

/* ══════════════════════════════════════
   CHECKOUT PAGE
   ══════════════════════════════════════ */

.woocommerce-checkout .telc-main {
    padding-bottom: 40px;
}

.woocommerce-checkout .container {
    max-width: 1100px;
}

/* Two column checkout layout */
.woocommerce-checkout #customer_details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    width: 100% !important;
    float: none !important;
}

.woocommerce-checkout h3 {
    font-size: 18px;
    color: #333;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #5C79BC;
}

/* Form fields */
.woocommerce-checkout .form-row {
    margin-bottom: 14px;
}

.woocommerce-checkout .form-row label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

.woocommerce-checkout .form-row .required {
    color: #c0392b;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
    width: 100% !important;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    transition: border-color 0.2s;
    box-sizing: border-box;
    background: #fff;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: #5C79BC;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92,121,188,0.1);
}

/* Select2 dropdown styling */
.select2-container--default .select2-selection--single {
    height: auto !important;
    padding: 11px 14px;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.4;
    color: #333;
    padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
}

/* Order review */
.woocommerce-checkout-review-order {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.woocommerce-checkout-review-order-table th {
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
    padding: 12px 0;
    border-bottom: 2px solid #e5e5e5;
}

.woocommerce-checkout-review-order-table td {
    padding: 12px 0;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce-checkout-review-order-table .order-total td {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    border-top: 2px solid #e5e5e5;
    padding-top: 16px;
}

/* Payment methods */
#payment {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 24px;
    margin-top: 20px;
    border: 1px solid #eee;
}

#payment .payment_methods {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

#payment .payment_methods li {
    padding: 14px 16px;
    margin-bottom: 8px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

#payment .payment_methods li label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

#payment .payment_methods li .payment_box {
    padding: 12px 0 0;
    font-size: 13px;
    color: #666;
}

/* Place order */
#place_order {
    background: #EF8F61 !important;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

#place_order:hover {
    background: #e07a48 !important;
}

/* Checkout trust badges */
.woocommerce-checkout .woocommerce-privacy-policy-text {
    font-size: 12px;
    color: #888;
    margin-bottom: 16px;
}

/* SEO Footer category links — styles moved to main.css (.telc-browse-all-lists) */

/* ══════════════════════════════════════
   MOBILE CONTACT BAR
   ══════════════════════════════════════ */

.telc-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 0;
}

.mobile-bar-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.mobile-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    text-decoration: none;
    color: #555;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-right: 1px solid #f0f0f0;
    transition: color 0.2s;
}

.mobile-bar-btn:last-child {
    border-right: none;
}

.mobile-bar-btn:hover,
.mobile-bar-btn:active {
    color: #5C79BC;
}

.mobile-bar-btn svg {
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — SHOP & CART & CHECKOUT
   ══════════════════════════════════════ */

@media (max-width: 768px) {
    /* Mobile contact bar visible */
    .telc-mobile-bar {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }

    /* Shop directory */
    .featured-banner {
        grid-template-columns: 1fr;
    }
    .featured-banner-stats {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        padding: 20px;
    }
    .specialty-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-trust-strip {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    .shop-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Product page */
    .product-top {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }
    .product-image-col {
        max-width: 100%;
    }
    .product-meta-strip {
        flex-direction: column;
        gap: 10px;
    }
    .product-trust-badges {
        grid-template-columns: 1fr;
    }
    .sample-form-fields {
        flex-direction: column;
    }

    /* Cart */
    .woocommerce table.shop_table {
        display: block;
        overflow-x: auto;
    }
    .cart-collaterals {
        max-width: 100%;
    }

    /* Checkout */
    .woocommerce-checkout #customer_details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Grid */
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .subcategory-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .includes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    ul.products {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .subcategory-cards {
        grid-template-columns: 1fr;
    }
    .specialty-links-grid {
        grid-template-columns: 1fr;
    }
    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-banner-stats {
        flex-direction: column;
        gap: 12px;
    }
    .fnp-inner {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   WooCommerce Button Overrides
   Kill ALL default purple/remnant colors
   ══════════════════════════════════════ */

/* ── Global WooCommerce button reset ── */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
    background-color: #5C79BC !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover {
    background-color: #4A6199 !important;
    color: #fff !important;
}

/* ── Alt buttons (checkout, add to cart) use accent orange ── */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
    background-color: #EF8F61 !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: #e07a48 !important;
}

/* ── Downloads page buttons ── */
.woocommerce-MyAccount-downloads .download-file a,
.woocommerce-MyAccount-downloads td.download-file a,
.woocommerce-page .woocommerce-MyAccount-downloads .download-file a,
table.woocommerce-MyAccount-downloads td a,
.woocommerce-MyAccount-content .woocommerce-MyAccount-downloads .download-file a {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 10px 20px !important;
    background: #EF8F61 !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: background 0.2s;
    border: none !important;
    white-space: nowrap;
}

.woocommerce-MyAccount-downloads .download-file a:hover,
.woocommerce-MyAccount-downloads td.download-file a:hover,
table.woocommerce-MyAccount-downloads td a:hover {
    background: #e07a48 !important;
    color: #fff !important;
}

/* ── Dashboard Recent Downloads buttons ── */
.telc-recent-download-item .telc-btn-sm,
.telc-dashboard-recent .telc-btn-sm,
a.telc-btn-sm {
    display: inline-flex !important;
    align-items: center;
    padding: 8px 16px !important;
    background: #EF8F61 !important;
    color: #fff !important;
    border-radius: 6px;
    font-size: 12px !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s;
    white-space: nowrap;
    border: none;
}

.telc-recent-download-item .telc-btn-sm:hover,
.telc-dashboard-recent .telc-btn-sm:hover,
a.telc-btn-sm:hover {
    background: #e07a48 !important;
    color: #fff !important;
}

/* ── My Account table action buttons ── */
.woocommerce-MyAccount-content table a.woocommerce-button,
.woocommerce-MyAccount-content table a.button,
.woocommerce-MyAccount-content table .button,
.woocommerce-orders-table a.woocommerce-button,
.woocommerce-orders-table a.button {
    display: inline-block;
    padding: 8px 16px !important;
    background: #5C79BC !important;
    color: #fff !important;
    border-radius: 6px;
    font-size: 12px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: background 0.2s;
    border: none !important;
}

.woocommerce-MyAccount-content table a.woocommerce-button:hover,
.woocommerce-MyAccount-content table a.button:hover,
.woocommerce-orders-table a.woocommerce-button:hover {
    background: #4A6199 !important;
    color: #fff !important;
}

/* ── Kill any remaining WooCommerce purple ── */
.woocommerce a.added_to_cart {
    color: #5C79BC !important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle,
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background-color: #5C79BC !important;
}

/* Stripe payment button overrides */
.woocommerce-checkout .wc-stripe-elements-field,
.woocommerce-checkout #payment .payment_methods li .payment_box {
    border-color: #e5e5e5;
}

#place_order,
.woocommerce #place_order,
.woocommerce-checkout #place_order {
    background-color: #EF8F61 !important;
    color: #fff !important;
    font-size: 16px !important;
    padding: 16px 32px !important;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none !important;
    width: 100%;
}

#place_order:hover,
.woocommerce #place_order:hover {
    background-color: #e07a48 !important;
}

/* ── Payment Badges (Footer) ── */
.footer-payment-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.footer-payment-badges img {
    height: 28px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-payment-badges img:hover {
    opacity: 1;
}

.footer-payment-badges .stripe-badge {
    height: 24px;
}

.footer-payment-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 12px;
}

.footer-payment-row img,
.footer-payment-row svg {
    opacity: 0.7;
    transition: opacity 0.2s;
    border-radius: 4px;
}

.footer-payment-row img:hover,
.footer-payment-row svg:hover {
    opacity: 1;
}

/* How It Works - Pre-order */
.product-how-it-works {
    background: linear-gradient(135deg, #f8f9fb 0%, #eef1f6 100%);
    padding: 48px 0;
    margin: 32px 0 0;
}

.fields-note {
    font-size: 13px;
    color: #666;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.how-it-works-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin: -8px 0 32px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.how-it-works-step {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #5C79BC;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.how-it-works-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.how-it-works-step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .how-it-works-step {
        padding: 16px;
    }
}

.footer-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #a0aec0;
    font-size: 13px;
    font-weight: 500;
}

.trust-badge svg {
    flex-shrink: 0;
    opacity: 0.85;
}

@media (max-width: 600px) {
    /* How It Works - Pre-order */
.product-how-it-works {
    background: linear-gradient(135deg, #f8f9fb 0%, #eef1f6 100%);
    padding: 48px 0;
    margin: 32px 0 0;
}

.fields-note {
    font-size: 13px;
    color: #666;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.how-it-works-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin: -8px 0 32px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.how-it-works-step {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #5C79BC;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.how-it-works-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.how-it-works-step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .how-it-works-step {
        padding: 16px;
    }
}

.footer-trust-badges {
        gap: 14px;
    }
    .trust-badge {
        font-size: 11px;
    }
    .trust-badge svg {
        width: 16px;
        height: 16px;
    }
}
