/* =========================================================
   KEMYSHOPPING CLEAN MAIN CSS
   Cleaned from your old CSS: duplicates removed, sections grouped,
   and comments added so you know what each part controls.

   Sections:
   1. Theme Variables + Global Reset
   2. Header + Mobile Menu
   3. Homepage
   4. Footer + Social Icons
   5. WooCommerce Shop / Category Pages
   6. Single Product Page
   7. Cart Page
   8. Checkout Page
   9. My Account Page
   10. Mobile / Small Screen Fixes
========================================================= */


/* =========================================================
   1. THEME VARIABLES + GLOBAL RESET
========================================================= */

:root {
    --faith-black: #0A0A0A;
    --faith-text: #1F1F1F;
    --faith-muted: #4B5563;
    --faith-pink: #F97316;
    --faith-pink-dark: #EA580C;
    --faith-pink-bright: #FB923C;
    --faith-pink-soft: #FFFBF7;
    --faith-pink-light: #FFF7ED;
    --faith-border: #FED7AA;
    --faith-border-soft: #FFEDD5;
    --faith-border-strong: #FDBA74;
    --faith-white: #ffffff;
    --faith-shadow: 0 18px 38px rgba(249, 115, 22, 0.08);
    --faith-content-pad: 7%;
    --faith-page-width: 1280px;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 78px;
    background: var(--faith-white);
    color: var(--faith-black);
    font-family: 'Poppins', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: 0.25s ease;
}

.faith-home,
.faith-header,
.hero,
.category-section,
.faith-footer,
footer {
    max-width: 100%;
}


/* =========================================================
   2. HEADER + MOBILE MENU
========================================================= */

.faith-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.12);
}

.faith-header-inner {
    height: 78px;
    padding: 0 var(--faith-content-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faith-logo,
.footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--faith-black);
    text-decoration: none;
    white-space: nowrap;
}

.faith-logo {
    font-size: 30px;
}

.faith-logo span,
.footer-logo span {
    color: var(--faith-pink);
}

.faith-nav {
    display: flex;
    align-items: center;
}

.faith-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.faith-menu a {
    position: relative;
    padding: 8px 0;
    color: var(--faith-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.faith-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--faith-pink);
    transition: 0.3s ease;
}

.faith-menu a:hover::after,
.faith-menu .current-menu-item a::after {
    width: 100%;
}

.faith-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faith-icon-link,
.faith-cart {
    color: var(--faith-black);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.faith-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--faith-black);
    color: var(--faith-white) !important;
}

.faith-cart-count {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--faith-pink);
    color: var(--faith-white);
    font-size: 12px;
}

.faith-menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 15px;
    background: var(--faith-pink-light);
    cursor: pointer;
}

.faith-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--faith-black);
}

.faith-mobile-menu {
    display: none;
    padding: 18px var(--faith-content-pad) 24px;
    background: var(--faith-white);
    border-top: 1px solid rgba(249, 115, 22, 0.12);
}

.faith-mobile-menu.active {
    display: block;
}

.faith-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faith-mobile-nav li {
    margin: 0;
    border-bottom: 1px solid var(--faith-border-soft);
}

.faith-mobile-nav a {
    display: block;
    padding: 15px 0;
    color: var(--faith-black);
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
}

.faith-mobile-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.faith-mobile-actions a {
    flex: 1;
    padding: 13px 16px;
    border-radius: 10px;
    background: var(--faith-pink);
    color: var(--faith-white);
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   3. HOMEPAGE
========================================================= */

.hero {
    position: relative;
    min-height: 560px;
    padding: 70px var(--faith-content-pad);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fff3e6 100%);
}

.hero-text {
    width: 48%;
    position: relative;
    z-index: 3;
    padding-top: 10px;
}

.script {
    margin: 0 0 12px;
    color: var(--faith-black);
    font-style: italic;
}

.hero h1 {
    margin: 0 0 18px;
    color: var(--faith-black);
    font-family: Georgia, serif;
    font-size: 56px;
    line-height: 0.92;
}

.hero h1:first-line {
    color: var(--faith-pink);
}

.hero h1 span {
    color: var(--faith-black);
}

.hero-desc {
    max-width: 360px;
    margin: 10px 0 0;
    color: var(--faith-black);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    position: relative;
    z-index: 4;
}

.hero-buttons a,
.bundle-text a,
.add-to-bag {
    display: inline-block;
    background: linear-gradient(135deg, var(--faith-pink-bright), var(--faith-pink));
    color: var(--faith-white) !important;
    text-decoration: none !important;
    font-weight: 800;
}

.hero-buttons a {
    padding: 14px 34px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.hero-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.hero-buttons a.outline {
    background: transparent;
    color: var(--faith-pink) !important;
    border: 2px solid var(--faith-pink);
}

.hero-image {
    position: absolute;
    top: 0;
    right: 2%;
    width: 48%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
    display: block;
}

.category-section,
.featured-products-section,
.bundle-banner-section,
.trust-section,
.shop-category-section {
    background: var(--faith-white);
}

.category-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 35px var(--faith-content-pad);
}

.category-card {
    min-height: 190px;
    padding: 28px;
    border-radius: 18px;
    background: var(--faith-pink-light);
    transition: 0.3s ease;
}

.category-card:hover,
.featured-product-card:hover,
.woocommerce-shop ul.products li.product:hover,
.tax-product_cat ul.products li.product:hover,
.faith-shop-page ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.12);
}

.category-card h3 {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1;
}

.category-card p {
    font-size: 14px;
    line-height: 1.5;
}

.category-card a {
    color: var(--faith-pink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.featured-products-section {
    padding: 28px var(--faith-content-pad) 20px;
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title-row h2 {
    margin: 0;
    flex: 1;
    text-align: center;
    color: var(--faith-black);
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 700;
}

.section-title-row h2 span,
.section-title-row a {
    color: var(--faith-pink);
}

.section-title-row h2 span {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
}

.section-title-row a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.featured-product-card {
    position: relative;
    padding: 18px 18px 20px;
    border: 1px solid #ffedd5;
    border-radius: 10px;
    background: var(--faith-white);
    text-align: center;
    overflow: hidden;
    transition: 0.3s ease;
}

.sale-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    border-radius: 4px;
    background: var(--faith-pink);
    color: var(--faith-white);
    font-size: 12px;
    font-weight: 800;
}

.heart-icon {
    position: absolute;
    top: 11px;
    right: 14px;
    color: #b9a0aa;
    font-size: 28px;
    line-height: 1;
}

.product-image-box {
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.product-image-box img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.featured-product-card h3 {
    min-height: 42px;
    margin: 0 0 8px;
    color: var(--faith-black);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.15;
}

.featured-product-card p {
    margin: 0 0 14px;
    color: var(--faith-text);
    font-size: 16px;
}

.add-to-bag {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 14px;
}

.bundle-banner-section {
    padding: 10px var(--faith-content-pad) 24px;
}

.bundle-banner {
    min-height: 210px;
    padding: 28px 44px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 0.5fr;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.bundle-text p {
    margin: 0 0 4px;
    color: var(--faith-pink);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-style: italic;
    line-height: 1;
}

.bundle-text h2 {
    margin: 0;
    color: var(--faith-black);
    font-family: Georgia, serif;
    font-size: 44px;
    line-height: 1;
}

.bundle-text span {
    display: block;
    max-width: 280px;
    margin: 10px 0 18px;
    color: var(--faith-text);
    font-size: 15px;
    line-height: 1.4;
}

.bundle-text a {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
}

.bundle-products {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.bundle-products img {
    max-width: 150px;
    max-height: 170px;
    object-fit: contain;
}

.bundle-products strong {
    color: var(--faith-black);
    font-size: 42px;
    font-weight: 800;
}

.bundle-save {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    background: var(--faith-pink);
    color: var(--faith-white);
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.trust-section {
    padding: 18px var(--faith-content-pad) 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-card {
    padding: 26px 20px;
    border-radius: 18px;
    background: var(--faith-pink-soft);
    text-align: center;
    border: 1px solid #ffedd5;
}

.trust-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--faith-pink-light);
    font-size: 28px;
}

.trust-card h3 {
    margin: 0 0 8px;
    color: var(--faith-black);
    font-size: 17px;
    font-weight: 800;
}

.trust-card p {
    margin: 0;
    color: #444444;
    font-size: 14px;
    line-height: 1.45;
}

.shop-category-section {
    padding: 10px var(--faith-content-pad) 48px;
}

.shop-category-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
    margin-bottom: 26px;
}

.shop-category-title span {
    height: 1px;
    background: var(--faith-border-strong);
}

.shop-category-title h2 {
    margin: 0;
    color: var(--faith-black);
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    white-space: nowrap;
}

.shop-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: start;
}

.shop-category-item {
    text-align: center;
    text-decoration: none;
    color: var(--faith-black);
}

.shop-category-image {
    width: 96px;
    height: 96px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--faith-pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s ease;
}

.shop-category-image img {
    max-width: 76px;
    max-height: 76px;
    object-fit: contain;
}

.shop-category-item p {
    margin: 0;
    color: var(--faith-black);
    font-size: 15px;
    font-weight: 800;
}

.shop-category-item:hover .shop-category-image {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.18);
}


/* =========================================================
   4. FOOTER + SOCIAL ICONS
========================================================= */

.faith-footer {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
    color: var(--faith-black);
    border-top: 1px solid var(--faith-border-strong);
}

.faith-footer-inner {
    padding: 48px var(--faith-content-pad) 34px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 34px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 34px;
}

.footer-brand p {
    max-width: 360px;
    margin: 0;
    color: var(--faith-text);
    font-size: 15px;
    line-height: 1.65;
}

.footer-column h3 {
    margin: 0 0 16px;
    color: var(--faith-black);
    font-size: 16px;
    font-weight: 900;
}

.footer-column a {
    display: block;
    margin-bottom: 11px;
    color: var(--faith-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.footer-column a:hover {
    color: var(--faith-pink);
}

.footer-contact p {
    margin: 0 0 16px;
    color: var(--faith-text);
    font-size: 14px;
    line-height: 1.5;
}

.footer-whatsapp {
    display: inline-block !important;
    margin-bottom: 16px !important;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--faith-pink);
    color: var(--faith-white) !important;
    text-decoration: none;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.footer-socials {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 16px !important;
}

.footer-socials a,
.footer-socials .social-icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 0 !important;
    color: var(--faith-white) !important;
    background: linear-gradient(135deg, #FB923C, #F97316) !important;
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.25) !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    overflow: hidden !important;
}

.footer-socials a svg,
.footer-socials .social-icon svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    fill: currentColor !important;
    color: var(--faith-white) !important;
}

.footer-socials a:hover,
.footer-socials .social-icon:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.35) !important;
}

.footer-socials .instagram {
    background: linear-gradient(135deg, #FB923C, #F97316) !important;
}

.footer-socials .tiktok {
    background: linear-gradient(135deg, #FDBA74, #F97316) !important;
}

.footer-socials .facebook {
    background: linear-gradient(135deg, #FED7AA, #EA580C) !important;
}

.faith-footer-bottom {
    padding: 18px var(--faith-content-pad);
    border-top: 1px solid rgba(249, 115, 22, 0.18);
    text-align: center;
}

.faith-footer-bottom p {
    margin: 0;
    color: #444444;
    font-size: 13px;
}


/* =========================================================
   5. WOOCOMMERCE SHOP / CATEGORY PAGES
========================================================= */

.woocommerce-shop aside,
.tax-product_cat aside,
.woocommerce-shop .widget-area,
.tax-product_cat .widget-area,
.woocommerce-shop #secondary,
.tax-product_cat #secondary,
.woocommerce-shop .sidebar,
.tax-product_cat .sidebar {
    display: none !important;
}

.woocommerce-shop .content-area,
.tax-product_cat .content-area,
.woocommerce-shop #primary,
.tax-product_cat #primary,
.woocommerce-shop main,
.tax-product_cat main,
.woocommerce-shop .site-main,
.tax-product_cat .site-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--faith-white) !important;
}

.woocommerce-shop .woocommerce,
.tax-product_cat .woocommerce,
.faith-shop-page {
    width: 100% !important;
    max-width: var(--faith-page-width) !important;
    margin: 0 auto !important;
    padding: 36px var(--faith-content-pad) 80px !important;
    background: var(--faith-white) !important;
}

.woocommerce-shop .page-title,
.tax-product_cat .page-title,
.woocommerce-shop .woocommerce-products-header__title,
.tax-product_cat .woocommerce-products-header__title,
.faith-shop-page .page-title,
.faith-shop-page .woocommerce-products-header__title {
    margin: 0 0 10px !important;
    color: var(--faith-black) !important;
    font-family: Georgia, serif !important;
    font-size: 46px !important;
    line-height: 1.1 !important;
    text-transform: capitalize !important;
}

.woocommerce-shop .woocommerce-result-count,
.tax-product_cat .woocommerce-result-count,
.faith-shop-page .woocommerce-result-count {
    float: none !important;
    display: block !important;
    margin: 0 0 12px !important;
    color: var(--faith-muted) !important;
    font-size: 14px !important;
}

.woocommerce-shop .woocommerce-ordering,
.tax-product_cat .woocommerce-ordering,
.faith-shop-page .woocommerce-ordering {
    float: none !important;
    display: flex !important;
    justify-content: flex-end !important;
    width: 100% !important;
    margin: -42px 0 24px !important;
}

.woocommerce-shop .woocommerce-ordering select,
.tax-product_cat .woocommerce-ordering select,
.faith-shop-page .woocommerce-ordering select {
    height: 44px !important;
    padding: 0 16px !important;
    border: 1px solid var(--faith-border-strong) !important;
    border-radius: 999px !important;
    background: var(--faith-pink-soft) !important;
    color: var(--faith-black) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.woocommerce-shop ul.products::before,
.woocommerce-shop ul.products::after,
.tax-product_cat ul.products::before,
.tax-product_cat ul.products::after,
.faith-shop-page ul.products::before,
.faith-shop-page ul.products::after {
    display: none !important;
    content: none !important;
}

.woocommerce-shop ul.products,
.tax-product_cat ul.products,
.faith-shop-page ul.products {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    clear: none !important;
    margin: 24px 0 0 !important;
    padding: 0 !important;
}

.woocommerce-shop ul.products li.product,
.tax-product_cat ul.products li.product,
.faith-shop-page ul.products li.product {
    float: none !important;
    clear: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 18px 18px 20px !important;
    border: 1px solid #ffedd5 !important;
    border-radius: 18px !important;
    background: var(--faith-white) !important;
    text-align: center !important;
    overflow: hidden !important;
    transition: 0.3s ease !important;
}

.woocommerce-shop ul.products li.product img,
.tax-product_cat ul.products li.product img,
.faith-shop-page ul.products li.product img {
    width: 100% !important;
    height: 210px !important;
    object-fit: contain !important;
    margin: 0 auto 14px !important;
    padding: 16px !important;
    border-radius: 14px !important;
    background: var(--faith-pink-soft) !important;
}

.woocommerce-shop span.onsale,
.tax-product_cat span.onsale,
.single-product span.onsale {
    min-height: auto !important;
    min-width: auto !important;
    padding: 7px 12px !important;
    border-radius: 6px !important;
    background: var(--faith-pink) !important;
    color: var(--faith-white) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
.faith-shop-page ul.products li.product .woocommerce-loop-product__title {
    min-height: 44px !important;
    padding: 0 !important;
    margin: 0 0 8px !important;
    color: var(--faith-black) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
}

.woocommerce-shop ul.products li.product .price,
.tax-product_cat ul.products li.product .price,
.faith-shop-page ul.products li.product .price {
    margin: 0 0 14px !important;
    color: var(--faith-pink) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

.woocommerce-shop ul.products li.product .button,
.tax-product_cat ul.products li.product .button,
.faith-shop-page ul.products li.product .button {
    width: 100% !important;
    padding: 11px 14px !important;
    border-radius: 999px !important;
    background: var(--faith-pink) !important;
    color: var(--faith-white) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.woocommerce-shop ul.products li.product .button:hover,
.tax-product_cat ul.products li.product .button:hover,
.faith-shop-page ul.products li.product .button:hover {
    background: var(--faith-black) !important;
}

.woocommerce-shop .woocommerce-pagination,
.tax-product_cat .woocommerce-pagination {
    margin-top: 36px !important;
}

.woocommerce-shop .woocommerce-pagination ul,
.tax-product_cat .woocommerce-pagination ul,
.woocommerce-shop .woocommerce-pagination ul li,
.tax-product_cat .woocommerce-pagination ul li {
    border: none !important;
}

.woocommerce-shop .woocommerce-pagination ul li,
.tax-product_cat .woocommerce-pagination ul li {
    margin: 0 4px !important;
}

.woocommerce-shop .woocommerce-pagination ul li a,
.woocommerce-shop .woocommerce-pagination ul li span,
.tax-product_cat .woocommerce-pagination ul li a,
.tax-product_cat .woocommerce-pagination ul li span {
    min-width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--faith-pink-light) !important;
    color: var(--faith-black) !important;
    font-weight: 800 !important;
}

.woocommerce-shop .woocommerce-pagination ul li span.current,
.tax-product_cat .woocommerce-pagination ul li span.current {
    background: var(--faith-pink) !important;
    color: var(--faith-white) !important;
}


/* =========================================================
   6. SINGLE PRODUCT PAGE
========================================================= */

.single-product .site,
.single-product .site-content,
.single-product .content-area,
.single-product #primary,
.single-product main,
.single-product .site-main,
.single-product .woocommerce {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: var(--faith-white);
}

.single-product .woocommerce div.product,
.single-product div.product {
    width: 100% !important;
    max-width: var(--faith-page-width) !important;
    margin: 0 auto !important;
    padding: 60px 5% 45px !important;
    display: grid !important;
    grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr) !important;
    gap: 55px !important;
    align-items: start !important;
}

.single-product .woocommerce div.product div.images,
.single-product div.product div.images {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    margin: 0 !important;
    padding: 34px !important;
    border-radius: 24px !important;
    background: var(--faith-pink-soft) !important;
    border: 1px solid var(--faith-border-soft) !important;
}

.single-product .woocommerce div.product div.images img,
.single-product div.product div.images img {
    width: 100% !important;
    max-width: 500px !important;
    max-height: 560px !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 18px;
}

.single-product .woocommerce div.product div.summary,
.single-product div.product div.summary {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    margin: 0 !important;
    padding: 40px !important;
    border-radius: 24px !important;
    background: var(--faith-white) !important;
    border: 1px solid var(--faith-border-soft) !important;
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.08) !important;
}

.single-product .product_title {
    margin: 0 0 14px !important;
    color: var(--faith-black) !important;
    font-family: Georgia, serif !important;
    font-size: 46px !important;
    line-height: 1.05 !important;
}

.single-product .summary .price,
.single-product .price,
.single-product .price span,
.single-product .price bdi {
    color: var(--faith-pink) !important;
    font-weight: 900 !important;
}

.single-product .summary .price {
    margin: 0 0 18px !important;
    font-size: 32px !important;
}

.single-product .woocommerce-product-details__short-description {
    margin-bottom: 22px !important;
    color: var(--faith-text) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.single-product form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 24px 0 22px !important;
}

.single-product .quantity input.qty {
    width: 76px !important;
    height: 50px !important;
    border: 1px solid var(--faith-border-strong) !important;
    border-radius: 12px !important;
    background: var(--faith-pink-soft) !important;
    color: var(--faith-black) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

.single-product button.single_add_to_cart_button,
.single-product .single_add_to_cart_button {
    min-height: 50px !important;
    padding: 0 34px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--faith-pink-bright), var(--faith-pink)) !important;
    color: var(--faith-white) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
}

.single-product .product_meta {
    margin-top: 22px !important;
    padding-top: 18px !important;
    border-top: 1px solid var(--faith-border-soft) !important;
    color: var(--faith-muted) !important;
    font-size: 13px !important;
}

.single-product .product_meta a {
    color: var(--faith-pink) !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.single-product div.product .woocommerce-tabs,
.single-product .woocommerce div.product .woocommerce-tabs {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 20px 0 70px !important;
    padding: 0 !important;
    clear: both !important;
}

.single-product .woocommerce-tabs ul.tabs {
    width: 100% !important;
    display: flex !important;
    gap: 18px !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    border-bottom: 1px solid var(--faith-border-soft) !important;
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li {
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    padding: 14px 18px !important;
    color: var(--faith-black) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: var(--faith-pink) !important;
}

.single-product .woocommerce-Tabs-panel,
.single-product #tab-description,
.single-product .woocommerce-tabs .panel {
    width: 100% !important;
    max-width: 100% !important;
    padding: 42px 48px !important;
    border-radius: 24px !important;
    background: var(--faith-pink-soft) !important;
    border: 1px solid var(--faith-border-soft) !important;
    color: var(--faith-text) !important;
    line-height: 1.75 !important;
}

.single-product #tab-description h2,
.single-product .woocommerce-tabs .panel h2 {
    margin-top: 0 !important;
    color: var(--faith-black) !important;
    font-family: Georgia, serif !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
}

.single-product #tab-description h3,
.single-product #tab-description h4,
.single-product .woocommerce-tabs .panel h3 {
    color: var(--faith-black) !important;
    font-size: 20px !important;
    line-height: 1.35 !important;
}

.single-product #tab-description p,
.single-product #tab-description li,
.single-product .woocommerce-tabs .panel p,
.single-product .woocommerce-tabs .panel li {
    color: var(--faith-text) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.single-product #tab-description ul,
.single-product #tab-description ol,
.single-product .woocommerce-tabs .panel ul,
.single-product .woocommerce-tabs .panel ol {
    padding-left: 24px !important;
    margin-bottom: 22px !important;
}

.single-product .related.products,
.single-product .upsells.products {
    grid-column: 1 / -1 !important;
    max-width: var(--faith-page-width) !important;
    margin: 0 auto 60px !important;
    padding: 0 !important;
}

.single-product .related.products h2,
.single-product .upsells.products h2 {
    margin-bottom: 22px !important;
    color: var(--faith-black) !important;
    font-family: Georgia, serif !important;
    font-size: 30px !important;
}


/* =========================================================
   7. CART PAGE
========================================================= */

.woocommerce-cart main,
.woocommerce-cart .site-main,
.woocommerce-cart .content-area,
.woocommerce-cart .woocommerce {
    background: var(--faith-white) !important;
}

.woocommerce-cart .woocommerce,
.woocommerce-cart .faith-page-content {
    width: 100% !important;
    max-width: var(--faith-page-width) !important;
    margin: 0 auto !important;
    padding: 60px var(--faith-content-pad) 90px !important;
}

.woocommerce-cart .entry-title,
.woocommerce-cart .page-title {
    margin: 0 0 28px !important;
    color: var(--faith-black) !important;
    font-family: Georgia, serif !important;
    font-size: 44px !important;
    line-height: 1.1 !important;
}

.woocommerce-cart table.shop_table {
    border: 1px solid var(--faith-border-soft) !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background: var(--faith-white) !important;
    border-collapse: separate !important;
}

.woocommerce-cart table.shop_table th {
    padding: 18px 16px !important;
    background: var(--faith-pink-light) !important;
    color: var(--faith-black) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
}

.woocommerce-cart table.shop_table td {
    padding: 18px 16px !important;
    border-top: 1px solid var(--faith-border-soft) !important;
    color: var(--faith-text) !important;
    font-size: 14px !important;
}

.woocommerce-cart table.cart img,
.woocommerce-cart .wc-block-cart-item__image img {
    width: 78px !important;
    height: 78px !important;
    object-fit: contain !important;
    padding: 8px !important;
    border-radius: 14px !important;
    background: var(--faith-pink-soft) !important;
}

.woocommerce-cart table.cart .product-name a,
.woocommerce-cart .wc-block-components-product-name {
    color: var(--faith-black) !important;
    text-decoration: none !important;
    font-weight: 900 !important;
}

.woocommerce-cart .quantity input.qty,
.woocommerce-cart .wc-block-components-quantity-selector {
    border: 1px solid var(--faith-border-strong) !important;
    border-radius: 999px !important;
    background: var(--faith-pink-soft) !important;
}

.woocommerce-cart .coupon input.input-text {
    width: 220px !important;
    height: 46px !important;
    padding: 0 16px !important;
    border: 1px solid var(--faith-border-strong) !important;
    border-radius: 999px !important;
    background: var(--faith-pink-soft) !important;
    color: var(--faith-black) !important;
}

.woocommerce-cart .coupon button,
.woocommerce-cart table.cart button.button {
    height: 46px !important;
    padding: 0 22px !important;
    border-radius: 999px !important;
    background: var(--faith-black) !important;
    color: var(--faith-white) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.woocommerce-cart .cart_totals,
.woocommerce-cart .wc-block-cart__sidebar {
    padding: 30px !important;
    border: 1px solid var(--faith-border-soft) !important;
    border-radius: 24px !important;
    background: var(--faith-pink-soft) !important;
    box-shadow: var(--faith-shadow) !important;
}

.woocommerce-cart .cart_totals h2,
.woocommerce-cart .wc-block-cart__totals-title {
    color: var(--faith-black) !important;
    font-family: Georgia, serif !important;
    font-size: 30px !important;
    font-weight: 900 !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart a.checkout-button,
.woocommerce-cart .checkout-button,
.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .wc-block-components-button {
    width: 100% !important;
    min-height: 54px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--faith-pink-bright), var(--faith-pink)) !important;
    color: var(--faith-white) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28) !important;
}

/* WooCommerce Cart Block layout */
.woocommerce-cart .wp-block-woocommerce-cart {
    max-width: 760px !important;
    margin: 0 auto !important;
    display: block !important;
}

.woocommerce-cart .wc-block-cart__main {
    width: 100% !important;
    padding: 24px !important;
    border: 1px solid var(--faith-border-soft) !important;
    border-radius: 24px !important;
    background: var(--faith-white) !important;
}

.woocommerce-cart .wc-block-cart__sidebar {
    width: 100% !important;
    margin-top: 24px !important;
}

.woocommerce-cart .wc-block-cart-items__row {
    padding: 18px 0 !important;
    border-bottom: 1px solid var(--faith-border-soft) !important;
}

.woocommerce-cart .wc-block-components-product-price,
.woocommerce-cart .wc-block-cart-item__total,
.woocommerce-cart .wc-block-components-totals-item__value {
    color: var(--faith-pink) !important;
    font-weight: 900 !important;
}


/* =========================================================
   8. CHECKOUT PAGE
========================================================= */

.woocommerce-checkout .faith-page-content {
    max-width: 1180px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 60px var(--faith-content-pad) 90px !important;
}

.woocommerce-checkout .wc-block-checkout {
    display: block !important;
    width: 100% !important;
}

.woocommerce-checkout .wc-block-checkout__main,
.woocommerce-checkout .wc-block-checkout__sidebar {
    width: 100% !important;
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 30px !important;
    border: 1px solid var(--faith-border-soft) !important;
    border-radius: 24px !important;
}

.woocommerce-checkout .wc-block-checkout__main {
    background: var(--faith-white) !important;
}

.woocommerce-checkout .wc-block-checkout__sidebar {
    margin-top: 28px !important;
    background: var(--faith-pink-soft) !important;
    box-shadow: var(--faith-shadow) !important;
}

.woocommerce-checkout .wc-block-components-title,
.woocommerce-checkout .wc-block-checkout__main h2,
.woocommerce-checkout .wc-block-components-checkout-step__title,
.woocommerce-checkout .wc-block-components-order-summary__button-text,
.woocommerce-checkout .wc-block-components-order-summary__title {
    color: var(--faith-black) !important;
    font-family: Georgia, serif !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
}

.woocommerce-checkout label,
.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-combobox label {
    color: var(--faith-black) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-combobox input {
    width: 100% !important;
    min-height: 48px !important;
    border: 1px solid var(--faith-border-strong) !important;
    border-radius: 12px !important;
    background: var(--faith-pink-soft) !important;
    color: var(--faith-black) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    outline: none !important;
    border-color: var(--faith-pink) !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12) !important;
}

.woocommerce-checkout .wc-block-components-order-summary-item__image img {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain !important;
    padding: 8px !important;
    border-radius: 14px !important;
    background: var(--faith-white) !important;
}

.woocommerce-checkout .wc-block-components-product-name,
.woocommerce-checkout .wc-block-components-product-price,
.woocommerce-checkout .wc-block-components-totals-item__value {
    color: var(--faith-black) !important;
    font-weight: 900 !important;
}

.woocommerce-checkout .wc-block-components-panel,
.woocommerce-checkout .wc-block-components-checkout-step,
.woocommerce-checkout .wc-block-components-totals-wrapper {
    border-color: var(--faith-border-soft) !important;
}

.woocommerce-checkout .wc-block-components-notice-banner,
.woocommerce-checkout .wc-block-components-notice-banner.is-error {
    border-radius: 14px !important;
    border-color: var(--faith-border-strong) !important;
    background: var(--faith-pink-light) !important;
    color: var(--faith-black) !important;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wc-block-components-button {
    width: 100% !important;
    min-height: 50px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--faith-pink-bright), var(--faith-pink)) !important;
    color: var(--faith-white) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28) !important;
}

.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
    color: var(--faith-black) !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.woocommerce-checkout .wc-block-checkout__add-note,
.woocommerce-checkout .wc-block-components-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 14px 0 !important;
}

.woocommerce-checkout .wc-block-components-checkbox input[type="checkbox"] {
    width: 18px !important;
    min-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
}


/* =========================================================
   9. MY ACCOUNT PAGE
========================================================= */

.woocommerce-account {
    background: var(--faith-white) !important;
}

.woocommerce-account .faith-page-content,
.woocommerce-account .entry-content {
    background: var(--faith-white) !important;
}

.woocommerce-account.logged-in .woocommerce::before,
.woocommerce-account.logged-in .woocommerce::after {
    display: none !important;
    content: none !important;
}

.woocommerce-account.logged-in .woocommerce {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 70px var(--faith-content-pad) 90px !important;
    display: grid !important;
    grid-template-columns: 280px minmax(0, 1fr) !important;
    grid-template-areas: "accountnav accountcontent" !important;
    gap: 36px !important;
    align-items: start !important;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation {
    grid-area: accountnav !important;
    width: 100% !important;
    max-width: 280px !important;
    float: none !important;
    margin: 0 !important;
    padding: 20px !important;
    border: 1px solid var(--faith-border) !important;
    border-radius: 24px !important;
    background: linear-gradient(180deg, #FFFBF7 0%, #FFF7ED 100%) !important;
    box-shadow: var(--faith-shadow) !important;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation li a {
    width: 100% !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 14px 18px !important;
    border-radius: 999px !important;
    background: var(--faith-white) !important;
    color: var(--faith-black) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-align: left !important;
    text-decoration: none !important;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account.logged-in .woocommerce-MyAccount-navigation li a:hover {
    background: var(--faith-pink) !important;
    color: var(--faith-white) !important;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content {
    grid-area: accountcontent !important;
    width: 100% !important;
    min-width: 0 !important;
    float: none !important;
    margin: 0 !important;
    padding: 34px !important;
    border: 1px solid var(--faith-border) !important;
    border-radius: 24px !important;
    background: var(--faith-white) !important;
    box-shadow: var(--faith-shadow) !important;
}

.woocommerce-account .woocommerce-MyAccount-content > p {
    width: 100% !important;
    margin: 0 0 16px !important;
    padding: 22px 24px !important;
    border: 1px solid var(--faith-border) !important;
    border-radius: 18px !important;
    background: var(--faith-pink-soft) !important;
    color: var(--faith-text) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: var(--faith-pink) !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account .woocommerce-MyAccount-content legend {
    margin: 0 0 18px !important;
    color: var(--faith-black) !important;
    font-family: Georgia, serif !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: 30px !important;
}

.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account .woocommerce-MyAccount-content legend {
    font-size: 24px !important;
}

.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error {
    margin: 0 0 18px !important;
    padding: 18px 20px !important;
    border: 1px solid var(--faith-border) !important;
    border-top: 4px solid var(--faith-pink) !important;
    border-radius: 18px !important;
    background: var(--faith-pink-soft) !important;
    color: var(--faith-black) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.woocommerce-account .button,
.woocommerce-account button.button,
.woocommerce-account input.button,
.woocommerce-account .woocommerce-button,
.woocommerce-account .woocommerce-orders-table__cell-order-actions a {
    min-height: 46px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 13px 24px !important;
    border: none !important;
    border-radius: 999px !important;
    background: var(--faith-pink) !important;
    color: var(--faith-white) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-indent: 0 !important;
    white-space: nowrap !important;
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.24) !important;
}

.woocommerce-account .button:hover,
.woocommerce-account button.button:hover,
.woocommerce-account input.button:hover,
.woocommerce-account .woocommerce-button:hover,
.woocommerce-account .woocommerce-orders-table__cell-order-actions a:hover {
    background: var(--faith-pink-dark) !important;
    color: var(--faith-white) !important;
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions a::after {
    display: none !important;
    content: none !important;
}

.woocommerce-account table.shop_table,
.woocommerce-account .woocommerce-orders-table {
    width: 100% !important;
    margin: 0 !important;
    border: 1px solid var(--faith-border) !important;
    border-radius: 18px !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    overflow: hidden !important;
    background: var(--faith-white) !important;
}

.woocommerce-account table.shop_table th,
.woocommerce-account .woocommerce-orders-table th {
    padding: 16px 14px !important;
    background: var(--faith-pink-light) !important;
    color: var(--faith-black) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.woocommerce-account table.shop_table td,
.woocommerce-account .woocommerce-orders-table td {
    padding: 16px 14px !important;
    border-top: 1px solid var(--faith-border) !important;
    color: var(--faith-text) !important;
    font-size: 14px !important;
}

.woocommerce-account .woocommerce-Addresses::before,
.woocommerce-account .woocommerce-Addresses::after,
.woocommerce-account .u-columns.woocommerce-Addresses::before,
.woocommerce-account .u-columns.woocommerce-Addresses::after {
    display: none !important;
    content: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
.woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
    margin-top: 22px !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
.woocommerce-account .woocommerce-MyAccount-content .u-column1.woocommerce-Address,
.woocommerce-account .woocommerce-MyAccount-content .u-column2.woocommerce-Address {
    width: 100% !important;
    margin: 0 !important;
    padding: 26px !important;
    border: 1px solid var(--faith-border) !important;
    border-radius: 20px !important;
    background: var(--faith-pink-soft) !important;
    overflow: hidden !important;
}

.woocommerce-account .woocommerce-Address-title {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 14px !important;
    align-items: start !important;
    margin-bottom: 16px !important;
}

.woocommerce-account .woocommerce-Address-title h3 {
    margin: 0 !important;
    color: var(--faith-black) !important;
    font-family: Georgia, serif !important;
    font-size: 26px !important;
    line-height: 1.05 !important;
}

.woocommerce-account .woocommerce-Address-title a.edit {
    color: var(--faith-pink) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-align: right !important;
}

.woocommerce-account .woocommerce-Address address {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    color: var(--faith-text) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

.woocommerce-account fieldset {
    margin: 24px 0 0 !important;
    padding: 22px !important;
    border: 1px solid var(--faith-border) !important;
    border-radius: 18px !important;
    background: var(--faith-pink-soft) !important;
}

.woocommerce-account label {
    margin-bottom: 7px !important;
    color: var(--faith-black) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.woocommerce-account input,
.woocommerce-account select,
.woocommerce-account textarea,
.woocommerce-account .input-text {
    width: 100% !important;
    min-height: 50px !important;
    padding: 0 14px !important;
    border: 1px solid var(--faith-border-strong) !important;
    border-radius: 12px !important;
    background: var(--faith-pink-soft) !important;
    color: var(--faith-black) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.woocommerce-account textarea {
    min-height: 120px !important;
    padding-top: 12px !important;
}

.woocommerce-account input:focus,
.woocommerce-account select:focus,
.woocommerce-account textarea:focus {
    outline: none !important;
    border-color: var(--faith-pink) !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12) !important;
}

.woocommerce-account:not(.logged-in) .woocommerce {
    max-width: 1180px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 55px var(--faith-content-pad) 80px !important;
    display: flex !important;
    justify-content: center !important;
}

.woocommerce-account:not(.logged-in) .woocommerce h2 {
    color: var(--faith-black) !important;
    font-family: Georgia, serif !important;
    font-size: 30px !important;
    font-weight: 900 !important;
}

.woocommerce-account:not(.logged-in) .woocommerce form.login,
.woocommerce-account:not(.logged-in) .woocommerce form.register {
    width: 100% !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    padding: 30px !important;
    border: 1px solid var(--faith-border) !important;
    border-radius: 24px !important;
    background: var(--faith-pink-soft) !important;
    box-shadow: var(--faith-shadow) !important;
}

.woocommerce-account form.login .woocommerce-form-login__rememberme {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 10px 0 14px !important;
    color: var(--faith-black) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.woocommerce-account form.login input[type="checkbox"] {
    width: 16px !important;
    min-width: 16px !important;
    height: 16px !important;
    min-height: 16px !important;
    padding: 0 !important;
}


/* =========================================================
   10. MOBILE / SMALL SCREEN FIXES
========================================================= */

@media (max-width: 900px) {
    .category-section,
    .featured-products-grid,
    .trust-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .woocommerce-shop ul.products,
    .tax-product_cat ul.products,
    .faith-shop-page ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    .woocommerce-shop ul.products li.product img,
    .tax-product_cat ul.products li.product img,
    .faith-shop-page ul.products li.product img {
        height: 180px !important;
    }

    .single-product .woocommerce div.product,
    .single-product div.product {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
        padding: 45px 4% 36px !important;
    }

    .single-product .product_title {
        font-size: 36px !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 86px;
    }

    .faith-header-inner {
        height: 86px;
        padding: 0 18px;
        gap: 12px;
    }

    .faith-logo {
        font-size: 26px;
        flex-shrink: 0;
    }

    .faith-nav,
    .faith-icon-link {
        display: none !important;
    }

    .faith-actions {
        gap: 10px;
        margin-left: auto;
    }

    .faith-cart {
        padding: 10px 14px;
        font-size: 13px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .faith-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        flex-shrink: 0;
    }

    .faith-mobile-menu {
        padding: 18px 20px 24px;
    }

    .hero {
        width: calc(100% - 24px);
        min-height: auto;
        margin: 12px auto 0;
        padding: 48px 24px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-text {
        width: 100%;
        max-width: 360px;
        z-index: 5;
    }

    .script {
        margin-bottom: 18px;
        font-size: 20px;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 0.95;
        letter-spacing: -1px;
        margin: 0;
    }

    .hero h1 span {
        font-size: 34px;
    }

    .hero-desc {
        max-width: 310px;
        margin-top: 28px;
        font-size: 19px;
        line-height: 1.45;
    }

    .hero-buttons {
        width: 100%;
        max-width: 340px;
        margin-top: 28px;
        gap: 10px;
    }

    .hero-buttons a {
        width: 100%;
        padding: 17px 18px;
        border-radius: 13px;
        text-align: center;
        font-size: 16px;
        white-space: nowrap;
    }

    .hero-image {
        position: relative;
        right: auto;
        width: 100%;
        height: auto;
        margin-top: 20px;
        text-align: center;
    }

    .hero-image img,
    .hero-img {
        width: 100%;
        max-width: 360px;
        height: auto;
        margin: 0 auto;
    }

    .category-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        padding: 36px 18px 56px;
    }

    .category-card {
        min-height: 250px;
        padding: 26px 20px;
        border-radius: 24px;
    }

    .category-card h3 {
        margin-bottom: 22px;
        font-size: 30px;
        line-height: 0.95;
    }

    .category-card p {
        margin-bottom: 28px;
        font-size: 17px;
        line-height: 1.4;
    }

    .category-card a {
        font-size: 17px;
    }

    .featured-products-section {
        padding: 30px 18px 18px;
        overflow: hidden;
    }

    .section-title-row h2 {
        text-align: left;
        font-size: 28px;
        line-height: 1.1;
    }

    .section-title-row a {
        font-size: 13px;
        white-space: nowrap;
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px;
    }

    .featured-product-card {
        padding: 16px 12px;
        border-radius: 16px;
    }

    .product-image-box {
        height: 150px;
    }

    .product-image-box img {
        max-height: 145px;
    }

    .featured-product-card h3 {
        min-height: 40px;
        font-size: 15px;
    }

    .featured-product-card p {
        font-size: 14px;
    }

    .add-to-bag {
        padding: 10px 8px;
        font-size: 12px;
        border-radius: 8px;
    }

    .bundle-banner-section {
        padding: 10px 18px 24px;
    }

    .bundle-banner {
        padding: 28px 22px;
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .bundle-text span {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .bundle-products {
        gap: 18px;
    }

    .bundle-products img {
        max-width: 115px;
        max-height: 140px;
    }

    .trust-section {
        padding: 14px 18px 34px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .trust-card {
        padding: 22px 14px;
        border-radius: 16px;
    }

    .shop-category-section {
        padding: 8px 18px 42px;
        overflow: hidden;
    }

    .shop-category-title {
        gap: 14px;
        margin-bottom: 22px;
    }

    .shop-category-title h2 {
        font-size: 26px;
    }

    .shop-category-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .shop-category-item {
        min-width: 82px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .shop-category-image {
        width: 76px;
        height: 76px;
    }

    .shop-category-image img {
        max-width: 58px;
        max-height: 58px;
    }

    .shop-category-item p {
        font-size: 13px;
    }

    .faith-footer-inner {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 26px 18px !important;
        padding: 34px 18px 26px !important;
        align-items: start !important;
    }

    .faith-footer .footer-brand,
    .faith-footer .footer-contact {
        grid-column: 1 / -1 !important;
    }

    .faith-footer .footer-brand p {
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .faith-footer .footer-logo {
        margin-bottom: 10px !important;
        font-size: 30px !important;
    }

    .faith-footer .footer-column {
        grid-column: auto !important;
    }

    .faith-footer-bottom {
        padding: 14px 18px !important;
    }

    .faith-footer-bottom p {
        font-size: 12px !important;
    }

    .woocommerce-shop .woocommerce,
    .tax-product_cat .woocommerce,
    .faith-shop-page {
        padding: 24px 14px 50px !important;
    }

    .woocommerce-shop .woocommerce-ordering,
    .tax-product_cat .woocommerce-ordering,
    .faith-shop-page .woocommerce-ordering {
        margin: 0 0 16px !important;
        justify-content: stretch !important;
    }

    .woocommerce-shop .woocommerce-ordering select,
    .tax-product_cat .woocommerce-ordering select,
    .faith-shop-page .woocommerce-ordering select {
        width: 100% !important;
    }

    .woocommerce-shop ul.products,
    .tax-product_cat ul.products,
    .faith-shop-page ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
        margin-top: 16px !important;
    }

    .woocommerce-shop ul.products li.product,
    .tax-product_cat ul.products li.product,
    .faith-shop-page ul.products li.product {
        padding: 14px 10px !important;
        border-radius: 16px !important;
    }

    .woocommerce-shop ul.products li.product img,
    .tax-product_cat ul.products li.product img,
    .faith-shop-page ul.products li.product img {
        height: 145px !important;
        padding: 12px !important;
    }

    .woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
    .tax-product_cat ul.products li.product .woocommerce-loop-product__title,
    .faith-shop-page ul.products li.product .woocommerce-loop-product__title {
        min-height: 38px !important;
        font-size: 14px !important;
    }

    .woocommerce-shop ul.products li.product .price,
    .tax-product_cat ul.products li.product .price,
    .faith-shop-page ul.products li.product .price {
        font-size: 14px !important;
    }

    .woocommerce-shop ul.products li.product .button,
    .tax-product_cat ul.products li.product .button,
    .faith-shop-page ul.products li.product .button {
        padding: 10px 8px !important;
        font-size: 12px !important;
    }

    .single-product .woocommerce div.product,
    .single-product div.product,
    .single-product .product {
        display: block !important;
        width: calc(100% - 24px) !important;
        max-width: 100% !important;
        margin: 14px auto 0 !important;
        padding: 0 !important;
    }

    .single-product div.product div.images,
    .single-product .woocommerce-product-gallery,
    .single-product div.product div.summary,
    .single-product .summary.entry-summary {
        width: 100% !important;
        float: none !important;
        margin: 0 0 18px !important;
        padding: 22px 18px !important;
        border: 1px solid var(--faith-border) !important;
        border-radius: 18px !important;
        background: var(--faith-pink-soft) !important;
        overflow: hidden !important;
    }

    .single-product .woocommerce-product-gallery__image img,
    .single-product div.product div.images img {
        width: 100% !important;
        max-width: 250px !important;
        max-height: 300px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .single-product .product_title,
    .single-product h1.product_title {
        font-size: 31px !important;
    }

    .single-product .summary .price,
    .single-product .price {
        font-size: 22px !important;
    }

    .single-product form.cart {
        display: block !important;
        width: 100%;
        margin: 0 !important;
    }

    .single-product form.cart .quantity,
    .single-product form.cart .quantity input.qty,
    .single-product form.cart .single_add_to_cart_button,
    .single-product .single_add_to_cart_button {
        width: 100% !important;
    }

    .single-product form.cart .quantity {
        margin: 0 0 12px !important;
    }

    .single-product form.cart .quantity input.qty {
        height: 54px !important;
        text-align: center;
        background: var(--faith-white) !important;
    }

    .single-product form.cart .single_add_to_cart_button,
    .single-product .single_add_to_cart_button {
        min-height: 58px !important;
        border-radius: 999px !important;
        background: var(--faith-pink) !important;
    }

    .single-product .product_meta,
    .single-product .woocommerce-tabs,
    .single-product .related.products,
    .single-product .upsells.products {
        width: calc(100% - 24px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .single-product .woocommerce-tabs ul.tabs {
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 18px !important;
    }

    .single-product .woocommerce-Tabs-panel,
    .single-product #tab-description,
    .single-product .woocommerce-tabs .panel {
        padding: 24px 18px !important;
        border-radius: 18px !important;
    }

    .single-product .related.products ul.products,
    .single-product .upsells.products ul.products {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .woocommerce-cart .faith-page-content,
    .woocommerce-cart .entry-content,
    .woocommerce-cart .wp-block-woocommerce-cart,
    .woocommerce-cart .wc-block-cart,
    .woocommerce-checkout .faith-page-content,
    .woocommerce-checkout .entry-content,
    .woocommerce-checkout .wp-block-woocommerce-checkout,
    .woocommerce-checkout .wc-block-checkout {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .woocommerce-cart .faith-page-content,
    .woocommerce-checkout .faith-page-content,
    .woocommerce-cart .woocommerce {
        padding: 34px 12px 60px !important;
    }

    .woocommerce-cart .wc-block-cart__main,
    .woocommerce-cart .wc-block-cart__sidebar,
    .woocommerce-checkout .wc-block-checkout__main,
    .woocommerce-checkout .wc-block-checkout__sidebar {
        max-width: 100% !important;
        padding: 22px 16px !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }

    .woocommerce-cart .wc-block-cart-items__row,
    .woocommerce-checkout .wc-block-components-order-summary-item {
        display: grid !important;
        grid-template-columns: 58px minmax(0, 1fr) !important;
        gap: 10px !important;
        overflow: hidden !important;
    }

    .woocommerce-cart .wc-block-cart-item__image,
    .woocommerce-checkout .wc-block-components-order-summary-item__image {
        width: 58px !important;
        padding: 0 !important;
    }

    .woocommerce-cart .wc-block-cart-item__image img,
    .woocommerce-checkout .wc-block-components-order-summary-item__image img {
        width: 54px !important;
        height: 54px !important;
        padding: 6px !important;
        border-radius: 12px !important;
    }

    .woocommerce-cart .wc-block-cart-item__product {
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .woocommerce-cart .wc-block-cart-item__total {
        display: none !important;
    }

    .woocommerce-cart .wc-block-components-product-name,
    .woocommerce-cart .wc-block-components-product-metadata,
    .woocommerce-cart .wc-block-components-product-details,
    .woocommerce-checkout .wc-block-components-product-name,
    .woocommerce-checkout .wc-block-components-product-metadata,
    .woocommerce-checkout .wc-block-components-product-details {
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    .woocommerce-cart .wc-block-components-product-name,
    .woocommerce-checkout .wc-block-components-product-name {
        font-size: 13px !important;
        line-height: 1.2 !important;
    }

    .woocommerce-cart .wc-block-components-product-metadata,
    .woocommerce-cart .wc-block-components-product-details,
    .woocommerce-checkout .wc-block-components-product-metadata,
    .woocommerce-checkout .wc-block-components-product-details {
        font-size: 10px !important;
        line-height: 1.25 !important;
    }

    .woocommerce-cart .wc-block-cart__sidebar,
    .woocommerce-checkout .wc-block-checkout__sidebar {
        margin-top: 22px !important;
    }

    .woocommerce-checkout .wc-block-components-title,
    .woocommerce-checkout .wc-block-checkout__main h2,
    .woocommerce-checkout .wc-block-components-checkout-step__title {
        font-size: 23px !important;
    }

    .woocommerce-account.logged-in .woocommerce,
    .woocommerce-account:not(.logged-in) .woocommerce {
        width: 100% !important;
        max-width: 100% !important;
        padding: 34px 12px 60px !important;
        display: block !important;
        overflow-x: hidden !important;
    }

    .woocommerce-account.logged-in .woocommerce-MyAccount-navigation {
        max-width: 100% !important;
        margin: 0 0 18px !important;
        padding: 16px !important;
        border-radius: 20px !important;
    }

    .woocommerce-account.logged-in .woocommerce-MyAccount-navigation ul {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .woocommerce-account.logged-in .woocommerce-MyAccount-navigation li a {
        min-height: 46px !important;
        justify-content: center !important;
        padding: 11px 8px !important;
        border-radius: 14px !important;
        font-size: 11.5px !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    .woocommerce-account.logged-in .woocommerce-MyAccount-content {
        padding: 22px 16px !important;
        border-radius: 20px !important;
    }

    .woocommerce-account .woocommerce-MyAccount-content > p {
        padding: 18px 16px !important;
        border-radius: 16px !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    .woocommerce-account table.shop_table,
    .woocommerce-account .woocommerce-orders-table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        border-radius: 16px !important;
    }

    .woocommerce-account table.shop_table th,
    .woocommerce-account table.shop_table td,
    .woocommerce-account .woocommerce-orders-table th,
    .woocommerce-account .woocommerce-orders-table td {
        padding: 12px 10px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
    }

    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
    .woocommerce-account .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .woocommerce-account .button,
    .woocommerce-account button.button,
    .woocommerce-account input.button,
    .woocommerce-account .woocommerce-button {
        width: 100% !important;
        min-height: 48px !important;
    }

    .woocommerce-account:not(.logged-in) .woocommerce form.login,
    .woocommerce-account:not(.logged-in) .woocommerce form.register {
        max-width: 100% !important;
        padding: 24px 18px !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 430px) {
    .faith-header-inner {
        padding: 0 14px;
    }

    .faith-logo {
        font-size: 24px;
    }

    .faith-cart {
        padding: 10px 13px;
        font-size: 13px;
    }

    .hero {
        width: calc(100% - 20px);
        margin-top: 10px;
        padding: 42px 20px 0;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero h1 span {
        font-size: 31px;
    }

    .hero-desc {
        max-width: 285px;
        font-size: 18px;
    }

    .hero-buttons {
        max-width: 300px;
        gap: 8px;
    }

    .hero-buttons a {
        padding: 15px 12px;
        font-size: 14px;
    }

    .hero-image img,
    .hero-img {
        max-width: 330px;
    }

    .category-section {
        gap: 12px;
        padding: 32px 12px 50px;
    }

    .category-card {
        min-height: 230px;
        padding: 24px 16px;
        border-radius: 22px;
    }

    .category-card h3 {
        font-size: 27px;
    }

    .featured-products-section {
        padding: 28px 12px 16px;
    }

    .section-title-row h2 {
        font-size: 24px;
    }

    .featured-products-grid {
        gap: 12px;
    }

    .product-image-box {
        height: 135px;
    }

    .product-image-box img {
        max-height: 130px;
    }

    .bundle-banner-section {
        padding: 8px 12px 22px;
    }

    .bundle-banner {
        padding: 26px 18px;
        border-radius: 16px;
    }

    .bundle-text p {
        font-size: 30px;
    }

    .bundle-text h2 {
        font-size: 38px;
    }

    .trust-section {
        padding: 12px 12px 32px;
        gap: 12px;
    }

    .shop-category-section {
        padding: 6px 12px 38px;
    }

    .shop-category-title h2 {
        font-size: 23px;
    }

    .faith-footer-inner {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px 16px !important;
        padding: 32px 16px 24px !important;
    }

    .footer-socials a,
    .footer-socials .social-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
    }

    .woocommerce-account.logged-in .woocommerce-MyAccount-navigation li a {
        font-size: 11px !important;
        padding: 10px 7px !important;
    }
}

/* =========================================================
   END OF CLEAN CSS
========================================================= */

/* =========================================================
   CHECKOUT PAYMENT OPTIONS - FINAL CLEAN FIX
   Keeps radio buttons left and payment names/logos aligned
========================================================= */

.woocommerce-checkout .wc-block-components-radio-control {
    width: 100% !important;
    display: grid !important;
    gap: 8px !important;
}

/* Each payment option row */
.woocommerce-checkout .wc-block-components-radio-control__option {
    position: relative !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 10px 14px 10px 42px !important;

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

    border: 1px solid #FDBA74 !important;
    border-radius: 8px !important;
    background: #FFFBF7 !important;
    box-sizing: border-box !important;
}

/* Force the real radio button to the left */
.woocommerce-checkout .wc-block-components-radio-control__option input[type="radio"],
.woocommerce-checkout .wc-block-components-radio-control__input,
.woocommerce-checkout input.wc-block-components-radio-control__input {
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;

    width: 15px !important;
    min-width: 15px !important;
    height: 15px !important;
    min-height: 15px !important;

    margin: 0 !important;
    padding: 0 !important;
    transform: translateY(-50%) !important;

    appearance: auto !important;
    -webkit-appearance: radio !important;
    accent-color: #F97316 !important;
}

/* Remove fake WooCommerce center dot/pseudo elements */
.woocommerce-checkout .wc-block-components-radio-control__option::before,
.woocommerce-checkout .wc-block-components-radio-control__option::after,
.woocommerce-checkout .wc-block-components-radio-control__option-layout::before,
.woocommerce-checkout .wc-block-components-radio-control__option-layout::after,
.woocommerce-checkout .wc-block-components-radio-control__label-group::before,
.woocommerce-checkout .wc-block-components-radio-control__label-group::after {
    display: none !important;
    content: none !important;
}

/* Label/logo/text area */
.woocommerce-checkout .wc-block-components-radio-control__option-layout,
.woocommerce-checkout .wc-block-components-radio-control__label-group,
.woocommerce-checkout .wc-block-components-radio-control__label {
    position: static !important;
    width: auto !important;
    max-width: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;

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

    color: #0A0A0A !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-align: left !important;
}

/* Payfast logo */
.woocommerce-checkout .wc-block-components-radio-control__label img,
.woocommerce-checkout .wc-block-components-radio-control__option-layout img,
.woocommerce-checkout .wc-block-checkout__payment-method img {
    width: auto !important;
    max-width: 85px !important;
    max-height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
}

/* Selected payment row */
.woocommerce-checkout .wc-block-components-radio-control__option-checked,
.woocommerce-checkout .wc-block-components-radio-control__option:has(input[type="radio"]:checked) {
    border-color: #F97316 !important;
    background: #FFF7ED !important;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.08) !important;
}

/* Hide empty payment description panel */
.woocommerce-checkout .wc-block-components-radio-control-accordion-content {
    display: none !important;
}

/* =========================================================
   WOOCOMMERCE ORDER RECEIVED / THANK YOU PAGE
   KemyShopping styling
========================================================= */

/* Main page wrapper */
.woocommerce-order {
    max-width: 980px;
    margin: 40px auto 70px;
    padding: 0 20px;
    color: #222;
}

/* Thank you message */
.woocommerce-order .woocommerce-notice,
.woocommerce-order .woocommerce-thankyou-order-received {
    background: #FFFBF7;
    border: 1px solid #f2d7e2;
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.06);
}

/* Order overview list (order number, date, email, total) */
.woocommerce-order ul.woocommerce-order-overview {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 0 0 28px;
}

.woocommerce-order ul.woocommerce-order-overview li {
    background: #FFFBF7;
    border: 1px solid #f2d7e2;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    line-height: 1.5;
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.05);
}

.woocommerce-order ul.woocommerce-order-overview li strong {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 800;
    text-transform: none;
    color: #111;
}

/* Section headings */
.woocommerce-order h2,
.woocommerce-order h3 {
    font-size: 28px;
    line-height: 1.2;
    margin: 26px 0 16px;
    color: #111;
    font-weight: 800;
}

/* Card style for order details + addresses */
.woocommerce-order .woocommerce-order-details,
.woocommerce-order .woocommerce-customer-details {
    background: #fff;
    border: 1px solid #f2d7e2;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.06);
}

/* Tables */
.woocommerce-order table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #f2d7e2;
    border-radius: 14px;
    overflow: hidden;
    background: #fffafc;
}

.woocommerce-order table.shop_table thead th {
    background: #fdebf2;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    padding: 14px 16px;
    border-bottom: 1px solid #f2d7e2;
    text-align: left;
}

.woocommerce-order table.shop_table tbody td,
.woocommerce-order table.shop_table tfoot td,
.woocommerce-order table.shop_table tfoot th {
    padding: 14px 16px;
    border-bottom: 1px solid #f6dfe8;
    font-size: 14px;
    color: #222;
}

.woocommerce-order table.shop_table tfoot th,
.woocommerce-order table.shop_table tfoot td {
    font-weight: 800;
    background: #fff;
}

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

/* Product links */
.woocommerce-order table.shop_table a {
    color: #F97316;
    font-weight: 700;
    text-decoration: none;
}

.woocommerce-order table.shop_table a:hover {
    text-decoration: underline;
}

/* Billing / shipping address box */
.woocommerce-order .woocommerce-customer-details address {
    background: #FFFBF7;
    border: 1px solid #f2d7e2;
    border-radius: 14px;
    padding: 16px 18px;
    margin-top: 10px;
    font-style: normal;
    line-height: 1.8;
    color: #333;
}

/* Email / phone in address */
.woocommerce-order .woocommerce-customer-details address a {
    color: #F97316;
    text-decoration: none;
    font-weight: 700;
}

.woocommerce-order .woocommerce-customer-details address a:hover {
    text-decoration: underline;
}

/* Make totals stand out */
.woocommerce-order table.shop_table tfoot tr:last-child th,
.woocommerce-order table.shop_table tfoot tr:last-child td {
    font-size: 16px;
    color: #111;
}

/* Soft spacing fix */
.woocommerce-order p {
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce-order {
        margin: 28px auto 50px;
        padding: 0 14px;
    }

    .woocommerce-order ul.woocommerce-order-overview {
        grid-template-columns: 1fr 1fr;
    }

    .woocommerce-order h2,
    .woocommerce-order h3 {
        font-size: 22px;
    }

    .woocommerce-order .woocommerce-order-details,
    .woocommerce-order .woocommerce-customer-details {
        padding: 16px;
    }

    .woocommerce-order table.shop_table thead th,
    .woocommerce-order table.shop_table tbody td,
    .woocommerce-order table.shop_table tfoot td,
    .woocommerce-order table.shop_table tfoot th {
        padding: 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .woocommerce-order ul.woocommerce-order-overview {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ORDER RECEIVED - EMAIL OVERLAP FIX
========================================================= */

/* Make overview cards handle long text like emails */
.woocommerce-order ul.woocommerce-order-overview li,
.woocommerce-order ul.woocommerce-order-overview li strong {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}

/* Better desktop layout: email gets more space */
@media (min-width: 769px) {
    .woocommerce-order ul.woocommerce-order-overview {
        grid-template-columns: 1fr 1fr 1.4fr 1fr !important;
        align-items: stretch !important;
    }
}

/* Tablet/mobile: use 2 columns */
@media (max-width: 768px) {
    .woocommerce-order ul.woocommerce-order-overview {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* Small phones: stack each card */
@media (max-width: 480px) {
    .woocommerce-order ul.woocommerce-order-overview {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   ORDER RECEIVED - FINAL CENTERED LAYOUT FIX
========================================================= */

/* Keep the whole thank-you page consistent */
.woocommerce-order {
    max-width: 820px !important;
    margin: 40px auto 70px !important;
    padding: 0 18px !important;
}

/* Thank-you message same width as content */
.woocommerce-order .woocommerce-thankyou-order-received,
.woocommerce-order .woocommerce-notice {
    width: 100% !important;
    margin: 0 0 22px !important;
}

/* 2x2 order overview cards */
.woocommerce-order ul.woocommerce-order-overview {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin: 0 0 24px !important;
    padding: 0 !important;
}

/* Cards */
.woocommerce-order ul.woocommerce-order-overview li {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 16px 18px !important;
    border: 1px solid #f2d7e2 !important;
    border-radius: 14px !important;
    background: #FFFBF7 !important;
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.05) !important;

    color: #666666 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;

    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}

/* Card values */
.woocommerce-order ul.woocommerce-order-overview li strong {
    display: block !important;
    margin-top: 6px !important;
    color: #0A0A0A !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
    text-transform: none !important;

    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}

/* Order details and billing address same width */
.woocommerce-order .woocommerce-order-details,
.woocommerce-order .woocommerce-customer-details {
    width: 100% !important;
    margin: 0 0 22px !important;
}

/* Mobile */
@media (max-width: 520px) {
    .woocommerce-order {
        margin: 28px auto 50px !important;
        padding: 0 14px !important;
    }

    .woocommerce-order ul.woocommerce-order-overview {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}

/* =========================================================
   ORDER RECEIVED - REMOVE INVISIBLE GRID ITEMS
   Fixes overview cards starting from the wrong column
========================================================= */

.woocommerce-order ul.woocommerce-order-overview::before,
.woocommerce-order ul.woocommerce-order-overview::after {
    display: none !important;
    content: none !important;
}

.woocommerce-order ul.woocommerce-order-overview {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 0 0 24px !important;
    padding: 0 !important;
}

.woocommerce-order ul.woocommerce-order-overview li {
    float: none !important;
    clear: none !important;
    width: 100% !important;
    margin: 0 !important;
}

/* ================================
   KEMYSHOPPING CONTACT PAGE
================================ */

.faith-contact-page {
    background: #ffffff;
    color: #0A0A0A;
}

/* Hero */
.contact-hero {
    background: linear-gradient(135deg, #ffffff 0%, #fff3e6 100%);
    padding: 90px 7% 70px;
    text-align: center;
}

.contact-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.contact-label {
    display: inline-block;
    background: #ffffff;
    color: #F97316;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 18px;
}

.contact-hero h1 {
    font-family: Georgia, serif;
    font-size: 54px;
    line-height: 1;
    margin: 0 0 18px;
    color: #0A0A0A;
}

.contact-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: #1F1F1F;
}

/* Main layout */
.contact-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
    padding: 70px 7%;
    max-width: 1250px;
    margin: 0 auto;
}

.contact-info-card,
.contact-form-card {
    background: #ffffff;
    border: 1px solid #f1d7e1;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 18px 45px rgba(249, 115, 22, 0.08);
}

.contact-info-card h2,
.contact-form-card h2 {
    font-family: Georgia, serif;
    font-size: 34px;
    margin: 0 0 12px;
    color: #0A0A0A;
}

.contact-intro,
.contact-form-card p {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Contact info items */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 18px;
    background: #FFFBF7;
    border-radius: 20px;
    border: 1px solid #ffe1ec;
}

.contact-info-item span {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #F97316;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #0A0A0A;
}

.contact-info-item p {
    margin: 0;
    color: #4B5563;
    line-height: 1.5;
}

.contact-info-item a {
    color: #F97316;
    text-decoration: none;
    font-weight: 700;
}

/* Contact Form 7 styling */
.contact-form-card form {
    margin-top: 20px;
}

.contact-form-card label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    color: #0A0A0A;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
    width: 100%;
    border: 1px solid #f0cbd8;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 15px;
    background: #fffafa;
    color: #0A0A0A;
    outline: none;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.contact-form-card textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-card input[type="submit"] {
    width: auto;
    background: #F97316;
    color: #ffffff;
    border: none;
    padding: 15px 34px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
}

.contact-form-card input[type="submit"]:hover {
    background: #0A0A0A;
    transform: translateY(-2px);
}

/* Remove dark mode phone color changes */
@media (prefers-color-scheme: dark) {
    .faith-contact-page,
    .contact-info-card,
    .contact-form-card {
        background: #ffffff !important;
        color: #0A0A0A !important;
    }

    .contact-hero {
        background: linear-gradient(135deg, #ffffff 0%, #fff3e6 100%) !important;
    }

    .contact-hero h1,
    .contact-info-card h2,
    .contact-form-card h2,
    .contact-info-item h4,
    .contact-form-card label {
        color: #0A0A0A !important;
    }

    .contact-hero p,
    .contact-intro,
    .contact-form-card p,
    .contact-info-item p {
        color: #4B5563 !important;
    }

    .contact-form-card input,
    .contact-form-card textarea,
    .contact-form-card select {
        background: #fffafa !important;
        color: #0A0A0A !important;
        border-color: #f0cbd8 !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-hero {
        padding: 70px 22px 50px;
    }

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .contact-section {
        grid-template-columns: 1fr;
        padding: 40px 18px;
        gap: 25px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px;
        border-radius: 24px;
    }

    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 28px;
    }

    .contact-info-item {
        padding: 16px;
    }

    .contact-form-card input[type="submit"] {
        width: 100%;
    }
}

/* =========================================================
   11. KEMYSHOPPING BLUE PALETTE OVERRIDES
========================================================= */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #fff3e6 100%) !important;
}
.category-card {
    background: #fffbf7 !important;
    border: 1px solid #ffedd5 !important;
}
.featured-product-card,
.woocommerce-shop ul.products li.product,
.tax-product_cat ul.products li.product,
.faith-shop-page ul.products li.product {
    border-color: #ffedd5 !important;
}
.bundle-banner {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%) !important;
}
.trust-card {
    background: #ffffff !important;
    border-color: #ffedd5 !important;
}
.shop-category-image {
    background: #fff7ed !important;
}
.faith-footer {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%) !important;
    border-top: 1px solid #fed7aa !important;
}
.faith-footer-bottom {
    border-top: 1px solid #ffedd5 !important;
}
.footer-socials a,
.footer-socials .social-icon,
.footer-socials .instagram,
.footer-socials .tiktok,
.footer-socials .facebook {
    background: linear-gradient(135deg, #FB923C, #F97316) !important;
}
.heart-icon {
    color: #94A3B8 !important;
}


/* =========================================================
   12. KEMYSHOPPING ORANGE + BLACK PALETTE OVERRIDES
========================================================= */
:root {
    --faith-black: #0A0A0A;
    --faith-text: #1F1F1F;
    --faith-muted: #4B5563;
    --faith-pink: #F97316;
    --faith-pink-dark: #EA580C;
    --faith-pink-bright: #FB923C;
    --faith-pink-soft: #FFFBF7;
    --faith-pink-light: #FFF7ED;
    --faith-border: #FED7AA;
    --faith-border-soft: #FFEDD5;
    --faith-border-strong: #FDBA74;
    --faith-shadow: 0 18px 38px rgba(249, 115, 22, 0.10);
}
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #fff3e6 100%) !important;
}
.category-card {
    background: #fffbf7 !important;
    border: 1px solid #ffedd5 !important;
}
.featured-product-card,
.woocommerce-shop ul.products li.product,
.tax-product_cat ul.products li.product,
.faith-shop-page ul.products li.product {
    border-color: #ffedd5 !important;
}
.bundle-banner {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%) !important;
}
.trust-card {
    background: #ffffff !important;
    border-color: #ffedd5 !important;
}
.trust-icon,
.shop-category-image {
    background: #fff7ed !important;
}
.faith-footer {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%) !important;
    border-top: 1px solid #fed7aa !important;
}
.faith-footer-bottom {
    border-top: 1px solid #ffedd5 !important;
}
.footer-socials a,
.footer-socials .social-icon,
.footer-socials .instagram,
.footer-socials .tiktok,
.footer-socials .facebook {
    background: linear-gradient(135deg, #FB923C, #F97316) !important;
}
.footer-whatsapp,
.sale-badge,
.bundle-save,
.faith-cart-count {
    background: #F97316 !important;
}


/* =========================================================
   12. KEMYSHOPPING MARKETPLACE POLISH
========================================================= */
body {
    padding-top: 122px;
    background: #fffdfb;
}

.faith-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.faith-topbar {
    background: linear-gradient(135deg, var(--faith-black), #1a1a1a);
    color: var(--faith-white);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faith-topbar-inner {
    max-width: var(--faith-page-width);
    margin: 0 auto;
    min-height: 42px;
    padding: 0 var(--faith-content-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faith-topbar-inner p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.88);
}

.faith-topbar-inner a {
    color: var(--faith-pink-bright);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.faith-header {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.05);
}

.faith-header-inner {
    max-width: var(--faith-page-width);
    margin: 0 auto;
    height: 80px;
    gap: 22px;
}

.faith-logo {
    flex-shrink: 0;
}

.faith-nav {
    flex-shrink: 0;
}

.faith-menu {
    gap: 24px;
}

.faith-menu a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.faith-header-search {
    flex: 1 1 auto;
    min-width: 220px;
}

.faith-header-search form {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid var(--faith-border-soft);
    border-radius: 999px;
    background: #fff8f1;
}

.faith-header-search input[type="search"],
.faith-header-search input[type="text"] {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--faith-black);
    font-size: 14px;
    font-weight: 500;
}

.faith-header-search button,
.faith-header-search input[type="submit"] {
    min-width: 96px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--faith-pink-bright), var(--faith-pink));
    color: var(--faith-white);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.desktop-only-search {
    display: block;
}

.mobile-only-search {
    display: none;
}

.faith-actions {
    gap: 12px;
    flex-shrink: 0;
}

.faith-account-link {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff7ed;
    border: 1px solid var(--faith-border-soft);
}

.faith-sell-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--faith-pink-bright), var(--faith-pink));
    color: var(--faith-white) !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.20);
}

.faith-cart {
    background: var(--faith-black);
    box-shadow: 0 12px 24px rgba(10,10,10,0.14);
}

.faith-mobile-menu {
    box-shadow: 0 18px 32px rgba(10,10,10,0.05);
}

.hero-buttons a,
.bundle-text a,
.add-to-bag,
.footer-cta-primary,
.footer-cta-secondary,
.woocommerce-shop ul.products li.product .button,
.tax-product_cat ul.products li.product .button,
.faith-shop-page ul.products li.product .button,
.single-product .single_add_to_cart_button {
    transition: 0.25s ease;
}

.featured-products-grid {
    gap: 24px;
}

.featured-product-card,
.woocommerce-shop ul.products li.product,
.tax-product_cat ul.products li.product,
.faith-shop-page ul.products li.product {
    border-radius: 22px !important;
    border: 1px solid rgba(249, 115, 22, 0.12) !important;
    box-shadow: 0 16px 34px rgba(10, 10, 10, 0.04);
}

.featured-product-card:hover,
.woocommerce-shop ul.products li.product:hover,
.tax-product_cat ul.products li.product:hover,
.faith-shop-page ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 46px rgba(249, 115, 22, 0.14) !important;
}

.product-image-box,
.woocommerce-shop ul.products li.product img,
.tax-product_cat ul.products li.product img,
.faith-shop-page ul.products li.product img {
    border-radius: 18px !important;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%) !important;
}

.heart-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff7ed;
    border: 1px solid var(--faith-border-soft);
    color: #9ca3af !important;
    font-size: 20px;
}

.sale-badge,
.woocommerce-shop span.onsale,
.tax-product_cat span.onsale,
.single-product span.onsale {
    border-radius: 999px !important;
    padding: 7px 12px !important;
    box-shadow: 0 10px 18px rgba(249, 115, 22, 0.18);
}

.add-to-bag,
.woocommerce-shop ul.products li.product .button,
.tax-product_cat ul.products li.product .button,
.faith-shop-page ul.products li.product .button {
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--faith-pink-bright), var(--faith-pink)) !important;
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.18);
}

.add-to-bag:hover,
.woocommerce-shop ul.products li.product .button:hover,
.tax-product_cat ul.products li.product .button:hover,
.faith-shop-page ul.products li.product .button:hover,
.hero-buttons a:hover,
.bundle-text a:hover,
.footer-cta-primary:hover,
.single-product .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(249, 115, 22, 0.24) !important;
}

.faith-footer {
    background: #111111 !important;
    color: var(--faith-white);
    border-top: 0 !important;
    margin-top: 40px;
}

.faith-footer-cta {
    max-width: var(--faith-page-width);
    margin: 0 auto;
    padding: 0 var(--faith-content-pad);
    transform: translateY(-38px);
}

.faith-footer-cta-inner {
    padding: 28px 32px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: var(--faith-white);
    box-shadow: 0 28px 44px rgba(249, 115, 22, 0.22);
}

.footer-cta-label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.faith-footer-cta-inner h2 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1.05;
}

.faith-footer-cta-inner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
}

.faith-footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.footer-cta-primary,
.footer-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.footer-cta-primary {
    background: var(--faith-black);
    color: var(--faith-white);
}

.footer-cta-secondary {
    background: rgba(255,255,255,0.16);
    color: var(--faith-white);
    border: 1px solid rgba(255,255,255,0.28);
}

.faith-footer-inner {
    max-width: var(--faith-page-width);
    margin: -6px auto 0;
    padding-top: 10px;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-brand p,
.footer-column a,
.footer-contact p,
.faith-footer-bottom p {
    color: rgba(255,255,255,0.75) !important;
}

.footer-column h3,
.footer-logo,
.footer-logo span {
    color: var(--faith-white);
}

.footer-logo span {
    color: var(--faith-pink-bright);
}

.footer-column a:hover {
    color: var(--faith-pink-bright) !important;
}

.footer-mini-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-mini-badges span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.88);
    font-size: 12px;
    font-weight: 700;
}

.footer-whatsapp {
    background: linear-gradient(135deg, var(--faith-pink-bright), var(--faith-pink)) !important;
}

.footer-socials a,
.footer-socials .social-icon,
.footer-socials .instagram,
.footer-socials .tiktok,
.footer-socials .facebook {
    background: linear-gradient(135deg, #fb923c, #ea580c) !important;
    box-shadow: 0 10px 18px rgba(249, 115, 22, 0.18) !important;
}

.faith-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}

@media (max-width: 1200px) {
    .desktop-only-search {
        display: none;
    }

    .faith-header-inner {
        gap: 14px;
    }
}

@media (max-width: 1024px) {
    body {
        padding-top: 120px;
    }

    .faith-nav,
    .faith-account-link,
    .faith-sell-btn {
        display: none;
    }

    .faith-menu-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .mobile-only-search {
        display: block;
        margin-bottom: 18px;
    }

    .faith-footer-cta-inner,
    .faith-footer-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .faith-footer-cta-inner {
        text-align: center;
    }

    .faith-footer-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 116px;
    }

    .faith-topbar-inner {
        min-height: 36px;
        justify-content: center;
        text-align: center;
    }

    .faith-topbar-inner a {
        display: none;
    }

    .faith-header-inner {
        height: 74px;
    }

    .faith-logo {
        font-size: 26px;
    }

    .faith-cart {
        padding: 10px 12px;
    }

    .faith-mobile-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .faith-footer-cta {
        transform: translateY(-26px);
    }

    .faith-footer-cta-inner {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .faith-footer-cta-inner h2 {
        font-size: 28px;
    }

    .footer-mini-badges {
        justify-content: center;
    }
}


/* =========================================================
   13. KEMYSHOPPING PAGE POLISH V3
========================================================= */
.woocommerce-shop .woocommerce,
.tax-product_cat .woocommerce,
.faith-shop-page {
    padding-top: 48px !important;
}

.woocommerce-shop .woocommerce-result-count,
.tax-product_cat .woocommerce-result-count,
.faith-shop-page .woocommerce-result-count {
    margin-bottom: 18px !important;
    padding: 12px 16px !important;
    border: 1px solid var(--faith-border-soft) !important;
    border-radius: 14px !important;
    background: #fff8f1 !important;
}

.woocommerce-shop .woocommerce-ordering,
.tax-product_cat .woocommerce-ordering,
.faith-shop-page .woocommerce-ordering {
    margin-top: -56px !important;
}

.woocommerce-shop ul.products,
.tax-product_cat ul.products,
.faith-shop-page ul.products,
.single-product .related.products ul.products,
.single-product .upsells.products ul.products {
    gap: 24px !important;
}

.single-product .woocommerce div.product,
.single-product div.product {
    position: relative;
}

.single-product .woocommerce div.product div.summary,
.single-product div.product div.summary {
    position: sticky !important;
    top: 136px;
}

.single-product .woocommerce-product-gallery__wrapper,
.single-product .flex-viewport {
    border-radius: 18px;
}

.single-product .summary .price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.single-product .summary .price::before {
    content: "Best Deal";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff7ed;
    color: var(--faith-pink-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.kemy-product-highlights {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.kemy-product-highlight {
    padding: 14px 16px;
    border: 1px solid var(--faith-border-soft);
    border-radius: 16px;
    background: #fff8f1;
}

.kemy-product-highlight strong {
    display: block;
    margin-bottom: 4px;
    color: var(--faith-black);
    font-size: 14px;
    font-weight: 900;
}

.kemy-product-highlight span {
    display: block;
    color: var(--faith-text);
    font-size: 13px;
    line-height: 1.5;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
    position: relative;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals {
    width: 100%;
}

.woocommerce-cart form.woocommerce-cart-form {
    width: 100% !important;
}

.woocommerce-cart .woocommerce > form,
.woocommerce-cart .woocommerce .cart-collaterals {
    margin: 0 !important;
}

@media (min-width: 981px) {
    .woocommerce-cart .woocommerce {
        display: grid !important;
        grid-template-columns: minmax(0, 1.4fr) 360px !important;
        gap: 30px !important;
        align-items: start !important;
    }

    .woocommerce-cart .woocommerce .cart-collaterals {
        position: sticky !important;
        top: 136px;
    }

    .woocommerce-checkout form.checkout,
    .woocommerce-page.woocommerce-checkout form.checkout {
        display: grid !important;
        grid-template-columns: minmax(0, 1.2fr) 380px !important;
        gap: 30px !important;
        align-items: start !important;
    }

    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        width: 100% !important;
    }

    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        grid-column: 2 !important;
    }

    .woocommerce-checkout #customer_details {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
    }

    .woocommerce-checkout #order_review {
        position: sticky !important;
        top: 136px;
    }
}

.woocommerce-checkout form.checkout_coupon,
.woocommerce-checkout form.woocommerce-form-login,
.woocommerce-cart .woocommerce form.checkout_coupon {
    margin-bottom: 20px !important;
    padding: 20px !important;
    border: 1px solid var(--faith-border-soft) !important;
    border-radius: 18px !important;
    background: #fff8f1 !important;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2,
.woocommerce-page #customer_details .col-1,
.woocommerce-page #customer_details .col-2 {
    width: 100% !important;
    float: none !important;
    margin: 0 0 20px !important;
    padding: 26px !important;
    border: 1px solid var(--faith-border-soft) !important;
    border-radius: 22px !important;
    background: var(--faith-white) !important;
    box-shadow: 0 12px 28px rgba(10,10,10,0.04);
}

.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading {
    margin: 0 0 18px !important;
    color: var(--faith-black) !important;
    font-family: Georgia, serif !important;
    font-size: 28px !important;
    font-weight: 900 !important;
}

.woocommerce-checkout #order_review {
    padding: 24px !important;
    border: 1px solid var(--faith-border-soft) !important;
    border-radius: 22px !important;
    background: linear-gradient(180deg, #fffdf9 0%, #fff7ed 100%) !important;
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.08) !important;
}

.woocommerce-checkout table.shop_table {
    border: 0 !important;
    background: transparent !important;
}

.woocommerce-checkout .payment_methods,
.woocommerce-checkout #payment {
    border-radius: 18px !important;
}

.woocommerce-checkout #payment {
    background: #ffffff !important;
    border: 1px solid var(--faith-border-soft) !important;
}

.woocommerce-checkout #payment div.payment_box {
    background: #fff7ed !important;
    color: var(--faith-text) !important;
    border-radius: 14px !important;
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: #fff7ed !important;
}

.woocommerce-checkout #place_order,
.woocommerce-checkout button.button.alt {
    width: 100% !important;
    min-height: 52px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--faith-pink-bright), var(--faith-pink)) !important;
    color: var(--faith-white) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.18) !important;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation {
    overflow: hidden !important;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation::before {
    content: "My Account";
    display: block;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--faith-pink-bright), var(--faith-pink));
    color: var(--faith-white);
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.02em;
}

.kemy-account-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 24px;
}

.kemy-account-card {
    display: block;
    padding: 22px;
    border: 1px solid var(--faith-border-soft);
    border-radius: 20px;
    background: linear-gradient(180deg, #fffdf9 0%, #fff7ed 100%);
    text-decoration: none !important;
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.06);
}

.kemy-account-card-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(249,115,22,0.10);
    color: var(--faith-pink-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kemy-account-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--faith-black);
    font-size: 18px;
    line-height: 1.2;
}

.kemy-account-card small {
    display: block;
    color: var(--faith-text);
    font-size: 13px;
    line-height: 1.55;
}

.kemy-account-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(249, 115, 22, 0.12);
}

.woocommerce-account table.shop_table,
.woocommerce-account .woocommerce-orders-table {
    box-shadow: 0 14px 28px rgba(10,10,10,0.04);
}

.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type {
    background: linear-gradient(180deg, #fffdf9 0%, #fff7ed 100%) !important;
}

@media (max-width: 980px) {
    .single-product .woocommerce div.product div.summary,
    .single-product div.product div.summary,
    .woocommerce-cart .woocommerce .cart-collaterals,
    .woocommerce-checkout #order_review {
        position: static !important;
    }

    .kemy-account-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop .woocommerce-ordering,
    .tax-product_cat .woocommerce-ordering,
    .faith-shop-page .woocommerce-ordering {
        margin-top: 0 !important;
        justify-content: flex-start !important;
    }

    .woocommerce-cart .woocommerce,
    .woocommerce-checkout .woocommerce,
    .woocommerce-account.logged-in .woocommerce {
        gap: 20px !important;
    }

    .woocommerce-cart .woocommerce,
    .woocommerce-checkout .faith-page-content,
    .woocommerce-account.logged-in .woocommerce {
        padding-top: 40px !important;
        padding-bottom: 60px !important;
    }

    .woocommerce-checkout #customer_details .col-1,
    .woocommerce-checkout #customer_details .col-2,
    .woocommerce-checkout #order_review,
    .woocommerce-account.logged-in .woocommerce-MyAccount-content {
        padding: 20px !important;
        border-radius: 18px !important;
    }

    .woocommerce-cart table.shop_table th,
    .woocommerce-cart table.shop_table td,
    .woocommerce-account table.shop_table th,
    .woocommerce-account table.shop_table td {
        padding: 12px 10px !important;
        font-size: 12px !important;
    }
}


/* =========================================================
   14. KEMYSHOPPING QUICK FIXES V4
========================================================= */
/* Make sure the homepage and all pages sit correctly below the fixed header */
.home .faith-home,
.woocommerce-cart .faith-shop-page,
.woocommerce-checkout .faith-shop-page,
.woocommerce-account .faith-shop-page,
.page .faith-page {
    padding-top: 10px;
}

/* Strengthen the home hero/banner spacing */
.hero,
.bundle-banner-section {
    scroll-margin-top: 140px;
}

/* Fix footer CTA/layout spacing */
.faith-footer {
    margin-top: 70px !important;
}

.faith-footer-cta {
    margin-bottom: -10px;
}

/* ===== CLASSIC CART LAYOUT FIX ===== */
@media (min-width: 981px) {
    .woocommerce-cart .woocommerce {
        max-width: 1280px !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 340px !important;
        gap: 34px !important;
        align-items: start !important;
    }

    .woocommerce-cart .woocommerce-cart-form {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin: 0 !important;
    }

    .woocommerce-cart .cart-collaterals {
        width: 100% !important;
        max-width: 340px !important;
        float: none !important;
        margin: 0 !important;
        position: sticky !important;
        top: 136px !important;
    }

    .woocommerce-cart .cart-collaterals .cart_totals {
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
    }
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart form.woocommerce-cart-form,
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .cart-collaterals .cart_totals {
    box-sizing: border-box !important;
}

.woocommerce-cart .woocommerce-cart-form {
    min-width: 0 !important;
}

.woocommerce-cart table.shop_table,
.woocommerce-cart table.cart {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: auto !important;
}

.woocommerce-cart table.cart td.actions .coupon {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
}

.woocommerce-cart table.cart td.actions {
    padding-top: 16px !important;
}

.woocommerce-cart table.cart td.actions .input-text {
    flex: 1 1 220px !important;
    margin: 0 !important;
}

.woocommerce-cart table.cart td.actions .button,
.woocommerce-cart table.cart td.actions button.button,
.woocommerce-cart table.cart td.actions input.button {
    margin: 0 !important;
}

.woocommerce-cart .product-thumbnail {
    width: 110px !important;
}

.woocommerce-cart .product-thumbnail img {
    display: block !important;
    margin: 0 auto !important;
}

.woocommerce-cart .product-name {
    min-width: 220px !important;
}

.woocommerce-cart .product-name a {
    display: inline-block !important;
    line-height: 1.45 !important;
}

.woocommerce-cart .cart_totals table.shop_table {
    border-radius: 16px !important;
    overflow: hidden !important;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
    padding: 14px 12px !important;
    vertical-align: top !important;
}

.woocommerce-cart .shipping-calculator-button {
    display: inline-block !important;
    margin-top: 6px !important;
    color: var(--faith-pink) !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.woocommerce-cart .wc-proceed-to-checkout {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Mobile cart cleanup */
@media (max-width: 980px) {
    .woocommerce-cart .woocommerce {
        display: block !important;
    }

    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
    }

    .woocommerce-cart .cart-collaterals {
        margin-top: 24px !important;
    }

    .woocommerce-cart table.cart td.actions .coupon {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .woocommerce-cart .coupon input.input-text,
    .woocommerce-cart table.cart td.actions .button,
    .woocommerce-cart table.cart td.actions button.button,
    .woocommerce-cart table.cart td.actions input.button {
        width: 100% !important;
    }
}


/* =========================================================
   15. CART GRID FIX V5
========================================================= */
@media (min-width: 981px) {
    .woocommerce-cart .woocommerce {
        max-width: 1280px !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 340px !important;
        gap: 34px !important;
        align-items: start !important;
    }

    .woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
    .woocommerce-cart .woocommerce > .woocommerce-message,
    .woocommerce-cart .woocommerce > .woocommerce-info,
    .woocommerce-cart .woocommerce > .woocommerce-error,
    .woocommerce-cart .woocommerce > .woocommerce-form-coupon-toggle {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        float: none !important;
        margin-bottom: 8px !important;
    }

    .woocommerce-cart .woocommerce > form.woocommerce-cart-form,
    .woocommerce-cart .woocommerce > .woocommerce-cart-form {
        grid-column: 1 !important;
        grid-row: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        float: none !important;
        margin: 0 !important;
    }

    .woocommerce-cart .woocommerce > .cart-collaterals {
        grid-column: 2 !important;
        grid-row: auto !important;
        width: 100% !important;
        max-width: 340px !important;
        min-width: 0 !important;
        float: none !important;
        margin: 0 !important;
        justify-self: stretch !important;
        align-self: start !important;
        position: sticky !important;
        top: 136px !important;
    }

    .woocommerce-cart .woocommerce > .cart-collaterals .cart_totals {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin: 0 !important;
    }
}

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

.woocommerce-cart .cart-collaterals::before,
.woocommerce-cart .cart-collaterals::after,
.woocommerce-cart .woocommerce-cart-form::before,
.woocommerce-cart .woocommerce-cart-form::after {
    content: none !important;
    display: none !important;
}

.woocommerce-cart .cart-collaterals {
    clear: none !important;
}

.woocommerce-cart table.cart td.actions .coupon {
    width: 100% !important;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    max-width: 260px !important;
}

@media (max-width: 980px) {
    .woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
    .woocommerce-cart .woocommerce > form.woocommerce-cart-form,
    .woocommerce-cart .woocommerce > .woocommerce-cart-form,
    .woocommerce-cart .woocommerce > .cart-collaterals {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}


/* =========================================================
   16. CART RESPONSIVE FINAL FIX V6
   Side-by-side only on wide screens. Medium screens stack cleanly.
========================================================= */
.woocommerce-cart .woocommerce {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding-left: 7% !important;
    padding-right: 7% !important;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .cart-collaterals .cart_totals {
    float: none !important;
    clear: none !important;
    box-sizing: border-box !important;
}

.woocommerce-cart .woocommerce-cart-form {
    min-width: 0 !important;
}

.woocommerce-cart table.cart,
.woocommerce-cart table.shop_table {
    width: 100% !important;
    max-width: 100% !important;
}

/* Wide desktop: proper left + right layout */
@media (min-width: 1180px) {
    .woocommerce-cart .woocommerce {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 360px !important;
        gap: 32px !important;
        align-items: start !important;
    }

    .woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
    .woocommerce-cart .woocommerce > .woocommerce-message,
    .woocommerce-cart .woocommerce > .woocommerce-info,
    .woocommerce-cart .woocommerce > .woocommerce-error {
        grid-column: 1 / -1 !important;
    }

    .woocommerce-cart .woocommerce > form.woocommerce-cart-form,
    .woocommerce-cart .woocommerce > .woocommerce-cart-form {
        grid-column: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .woocommerce-cart .woocommerce > .cart-collaterals {
        grid-column: 2 !important;
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 !important;
        position: sticky !important;
        top: 136px !important;
    }
}

/* Medium desktop/tablet: stack neatly so nothing squeezes or cuts off */
@media (max-width: 1179px) {
    .woocommerce-cart .woocommerce {
        display: block !important;
        max-width: 860px !important;
        padding-top: 48px !important;
    }

    .woocommerce-cart .woocommerce > form.woocommerce-cart-form,
    .woocommerce-cart .woocommerce > .woocommerce-cart-form {
        width: 100% !important;
        max-width: 760px !important;
        margin: 0 auto !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .woocommerce-cart table.cart,
    .woocommerce-cart table.shop_table {
        min-width: 620px !important;
    }

    .woocommerce-cart .cart-collaterals {
        width: 100% !important;
        max-width: 420px !important;
        margin: 30px auto 0 !important;
        position: static !important;
    }

    .woocommerce-cart .cart-collaterals .cart_totals {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
}

/* Clean table proportions */
.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
    white-space: normal !important;
    vertical-align: middle !important;
}

.woocommerce-cart table.cart .product-remove {
    width: 44px !important;
    text-align: center !important;
}

.woocommerce-cart table.cart .product-thumbnail {
    width: 86px !important;
}

.woocommerce-cart table.cart .product-name {
    width: auto !important;
    min-width: 170px !important;
}

.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-quantity,
.woocommerce-cart table.cart .product-subtotal {
    width: 110px !important;
    text-align: center !important;
}

.woocommerce-cart table.cart .product-name a {
    font-size: 13px !important;
    line-height: 1.35 !important;
}

.woocommerce-cart table.cart td.actions {
    text-align: left !important;
}

.woocommerce-cart table.cart td.actions .coupon {
    max-width: 100% !important;
}

.woocommerce-cart .cart_totals {
    text-align: left !important;
}

.woocommerce-cart .cart_totals table.shop_table {
    min-width: 0 !important;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
    width: auto !important;
}

/* Phone: WooCommerce classic cart stacks better */
@media (max-width: 640px) {
    .woocommerce-cart .woocommerce {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .woocommerce-cart .woocommerce > form.woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals {
        max-width: 100% !important;
    }

    .woocommerce-cart table.cart,
    .woocommerce-cart table.shop_table {
        min-width: 560px !important;
    }

    .woocommerce-cart .cart_totals h2 {
        font-size: 26px !important;
    }
}


/* =========================================================
   17. CART LAYOUT POLISH V7
   Stack cart + totals more cleanly on most desktop widths.
========================================================= */
.woocommerce-cart .woocommerce {
    max-width: 1000px !important;
}

/* Default to a premium stacked layout */
.woocommerce-cart .woocommerce {
    display: block !important;
    padding-top: 46px !important;
}

.woocommerce-cart .woocommerce > form.woocommerce-cart-form,
.woocommerce-cart .woocommerce > .woocommerce-cart-form {
    width: 100% !important;
    max-width: 920px !important;
    margin: 0 auto !important;
    overflow-x: visible !important;
}

.woocommerce-cart .woocommerce > .cart-collaterals {
    width: 100% !important;
    max-width: 920px !important;
    margin: 28px auto 0 !important;
    position: static !important;
}

.woocommerce-cart .woocommerce > .cart-collaterals .cart_totals {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 30px !important;
}

.woocommerce-cart .cart_totals h2 {
    margin-bottom: 18px !important;
}

.woocommerce-cart .cart_totals table.shop_table {
    width: 100% !important;
}

.woocommerce-cart .cart_totals table.shop_table th {
    width: 34% !important;
}

.woocommerce-cart table.cart,
.woocommerce-cart table.shop_table {
    min-width: 100% !important;
}

.woocommerce-cart table.cart .product-remove {
    width: 50px !important;
}

.woocommerce-cart table.cart .product-thumbnail {
    width: 90px !important;
}

.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-quantity,
.woocommerce-cart table.cart .product-subtotal {
    width: 120px !important;
}

.woocommerce-cart table.cart td.actions {
    padding: 16px !important;
}

.woocommerce-cart table.cart td.actions .coupon {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.woocommerce-cart .coupon input.input-text {
    width: 260px !important;
    max-width: 100% !important;
}

.woocommerce-cart table.cart td.actions .button,
.woocommerce-cart table.cart td.actions button.button,
.woocommerce-cart table.cart td.actions input.button {
    min-width: 130px !important;
}

/* Only use two-column layout on very wide desktop screens */
@media (min-width: 1500px) {
    .woocommerce-cart .woocommerce {
        max-width: 1280px !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 360px !important;
        gap: 34px !important;
        align-items: start !important;
    }

    .woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
    .woocommerce-cart .woocommerce > .woocommerce-message,
    .woocommerce-cart .woocommerce > .woocommerce-info,
    .woocommerce-cart .woocommerce > .woocommerce-error,
    .woocommerce-cart .woocommerce > .woocommerce-form-coupon-toggle {
        grid-column: 1 / -1 !important;
    }

    .woocommerce-cart .woocommerce > form.woocommerce-cart-form,
    .woocommerce-cart .woocommerce > .woocommerce-cart-form {
        max-width: 100% !important;
        margin: 0 !important;
        grid-column: 1 !important;
    }

    .woocommerce-cart .woocommerce > .cart-collaterals {
        max-width: 360px !important;
        margin: 0 !important;
        grid-column: 2 !important;
        position: sticky !important;
        top: 136px !important;
    }
}

@media (max-width: 980px) {
    .woocommerce-cart .woocommerce {
        max-width: 100% !important;
        padding-top: 40px !important;
    }

    .woocommerce-cart .woocommerce > form.woocommerce-cart-form,
    .woocommerce-cart .woocommerce > .cart-collaterals {
        max-width: 100% !important;
    }
}

@media (max-width: 640px) {
    .woocommerce-cart .woocommerce {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .woocommerce-cart .woocommerce > form.woocommerce-cart-form {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .woocommerce-cart table.cart,
    .woocommerce-cart table.shop_table {
        min-width: 560px !important;
    }

    .woocommerce-cart .woocommerce > .cart-collaterals .cart_totals {
        padding: 22px !important;
    }

    .woocommerce-cart .coupon input.input-text,
    .woocommerce-cart table.cart td.actions .button,
    .woocommerce-cart table.cart td.actions button.button,
    .woocommerce-cart table.cart td.actions input.button {
        width: 100% !important;
        min-width: 0 !important;
    }
}


/* =========================================================
   18. CHECKOUT + PRODUCT PAGE POLISH V8
========================================================= */
/* Checkout: cleaner premium layout for classic checkout */
.woocommerce-checkout .woocommerce {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 50px var(--faith-content-pad) 90px !important;
}

.woocommerce-checkout .woocommerce > .woocommerce-notices-wrapper:empty {
    display: none !important;
}

.woocommerce-checkout form.checkout {
    width: 100% !important;
    max-width: 1080px !important;
    margin: 0 auto !important;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
    width: 100% !important;
}

.woocommerce-checkout #customer_details {
    width: 100% !important;
}

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

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

.woocommerce-checkout .form-row,
.woocommerce-checkout .woocommerce-input-wrapper {
    width: 100% !important;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    float: none !important;
    width: 100% !important;
}

.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #shipping_address_1_field,
.woocommerce-checkout #shipping_address_2_field,
.woocommerce-checkout #order_comments_field,
.woocommerce-checkout .form-row-wide {
    grid-column: 1 / -1 !important;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 50px !important;
    border-radius: 14px !important;
    border: 1px solid var(--faith-border-soft) !important;
    background: #fff8f1 !important;
    color: var(--faith-black) !important;
    box-shadow: none !important;
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 50px !important;
    padding-left: 14px !important;
    color: var(--faith-black) !important;
    font-weight: 600 !important;
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
}

.woocommerce-checkout textarea {
    min-height: 120px !important;
    padding-top: 14px !important;
}

.woocommerce-checkout label {
    margin-bottom: 7px !important;
    color: var(--faith-black) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.woocommerce-checkout #order_review_heading {
    margin-top: 0 !important;
}

.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
    padding: 14px 10px !important;
    border-color: var(--faith-border-soft) !important;
}

.woocommerce-checkout #order_review .product-name,
.woocommerce-checkout #order_review .product-total {
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.woocommerce-checkout #order_review tfoot th,
.woocommerce-checkout #order_review tfoot td {
    font-weight: 900 !important;
}

.woocommerce-checkout .woocommerce-privacy-policy-text {
    color: var(--faith-text) !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: var(--faith-pink) !important;
    font-weight: 900 !important;
}

/* Single product: more premium purchase box */
.single-product .woocommerce div.product div.summary,
.single-product div.product div.summary {
    border: 1px solid rgba(249,115,22,0.14) !important;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%) !important;
}

.single-product .woocommerce-product-details__short-description {
    padding: 18px !important;
    border: 1px solid var(--faith-border-soft) !important;
    border-radius: 18px !important;
    background: #fff8f1 !important;
}

.single-product .quantity input.qty {
    background: #ffffff !important;
}

.single-product form.cart {
    padding: 16px !important;
    border: 1px solid var(--faith-border-soft) !important;
    border-radius: 18px !important;
    background: #fff8f1 !important;
}

.single-product .product_meta {
    padding: 16px !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    border: 1px solid var(--faith-border-soft) !important;
}

.single-product div.product .woocommerce-tabs,
.single-product .woocommerce div.product .woocommerce-tabs {
    margin-top: 10px !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    border: 1px solid var(--faith-border-soft) !important;
    background: #fff8f1 !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    background: var(--faith-pink) !important;
    border-color: var(--faith-pink) !important;
}

.single-product .woocommerce-Tabs-panel,
.single-product #tab-description,
.single-product .woocommerce-tabs .panel {
    box-shadow: 0 14px 28px rgba(10,10,10,0.04) !important;
}

/* Category/shop pages: subtle marketplace polish */
.woocommerce-shop .page-title,
.tax-product_cat .page-title,
.woocommerce-shop .woocommerce-products-header__title,
.tax-product_cat .woocommerce-products-header__title,
.faith-shop-page .page-title,
.faith-shop-page .woocommerce-products-header__title {
    display: inline-block !important;
    padding-bottom: 10px !important;
    border-bottom: 4px solid var(--faith-pink) !important;
}

.woocommerce-shop .woocommerce-ordering select,
.tax-product_cat .woocommerce-ordering select,
.faith-shop-page .woocommerce-ordering select {
    box-shadow: 0 10px 20px rgba(249,115,22,0.08) !important;
}

/* Better footer spacing after shop/cart/checkout sections */
.woocommerce-cart .faith-footer,
.woocommerce-checkout .faith-footer,
.single-product .faith-footer,
.woocommerce-shop .faith-footer,
.tax-product_cat .faith-footer {
    margin-top: 90px !important;
}

@media (min-width: 1180px) {
    .woocommerce-checkout form.checkout {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 390px !important;
        gap: 34px !important;
        align-items: start !important;
    }

    .woocommerce-checkout #customer_details {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
    }

    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        grid-column: 2 !important;
    }

    .woocommerce-checkout #order_review {
        position: sticky !important;
        top: 136px !important;
    }
}

@media (max-width: 980px) {
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr !important;
    }

    .single-product form.cart {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .woocommerce-checkout .woocommerce {
        padding-top: 36px !important;
        padding-bottom: 70px !important;
    }

    .woocommerce-checkout #customer_details .col-1,
    .woocommerce-checkout #customer_details .col-2,
    .woocommerce-checkout #order_review {
        padding: 20px !important;
    }

    .single-product .woocommerce div.product div.summary,
    .single-product div.product div.summary {
        padding: 24px !important;
    }
}
