/* =========================================================
   FAITH LK HOME - MAIN CSS
   Order:
   1. Global Reset
   2. Header
   3. Desktop Hero
   4. Category Cards
   5. Tablet / Mobile
   6. Very Small Phones
========================================================= */


/* =========================================================
   1. GLOBAL RESET / SAFETY FIXES
========================================================= */

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: #ffffff;
    color: #111111;
    font-family: 'Poppins', sans-serif;
}

.faith-home,
.faith-header,
.hero,
.category-section,
footer {
    max-width: 100%;
}


/* =========================================================
   2. HEADER
========================================================= */

.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(232, 76, 131, 0.12);
}

.faith-header-inner {
    height: 78px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.faith-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #111111;
    text-decoration: none;
    white-space: nowrap;
}

.faith-logo span {
    color: #e84c83;
}


/* DESKTOP NAV */

.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 li {
    margin: 0;
    padding: 0;
}

.faith-menu a {
    position: relative;
    padding: 8px 0;
    color: #111111;
    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: #e84c83;
    transition: 0.3s ease;
}

.faith-menu a:hover::after,
.faith-menu .current-menu-item a::after {
    width: 100%;
}


/* HEADER ACTIONS */

.faith-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faith-icon-link,
.faith-cart {
    color: #111111;
    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: #111111;
    color: #ffffff !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: #e84c83;
    color: #ffffff;
    font-size: 12px;
}


/* HAMBURGER BUTTON */

.faith-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid rgba(232, 76, 131, 0.25);
    border-radius: 12px;
    background: #fff1f6;
    cursor: pointer;
}

.faith-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #111111;
    transition: 0.3s ease;
}


/* MOBILE DROPDOWN MENU */

.faith-mobile-menu {
    display: none;
    padding: 18px 7% 24px;
    background: #ffffff;
    border-top: 1px solid rgba(232, 76, 131, 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 #f3d6e1;
}

.faith-mobile-nav a {
    display: block;
    padding: 15px 0;
    color: #111111;
    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: #e84c83;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   3. DESKTOP HERO
========================================================= */

.hero {
    position: relative;
    min-height: 560px;
    padding: 70px 7%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5f8 0%, #ffd7e5 100%);
}

.hero-text {
    width: 48%;
    position: relative;
    z-index: 3;
    padding-top: 10px;
}

.script {
    margin: 0 0 12px;
    color: #111111;
    font-style: italic;
}

.hero h1 {
    margin: 0 0 18px;
    color: #111111;
    font-family: Georgia, serif;
    font-size: 56px;
    line-height: 0.92;
}

.hero h1:first-line {
    color: #e84c83;
}

.hero h1 span {
    color: #111111;
}

.hero-desc {
    max-width: 360px;
    margin: 10px 0 0;
    color: #111111;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    position: relative;
    z-index: 4;
}

.hero-buttons a {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff5c9a, #e84c83);
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(232, 76, 131, 0.3);
    transition: 0.3s ease;
}

.hero-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 76, 131, 0.4);
}

.hero-buttons a.outline {
    background: transparent;
    color: #e84c83 !important;
    border: 2px solid #e84c83;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 2%;
    bottom: auto;
    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%;
    max-height: none;
    object-fit: contain;
    object-position: top right;
    display: block;
}


/* =========================================================
   4. CATEGORY CARDS
========================================================= */

.category-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 35px 7%;
    background: #ffffff;
}

.category-card {
    min-height: 190px;
    padding: 28px;
    border-radius: 18px;
    background: #fff1f6;
    transition: 0.3s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.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: #e84c83;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

/* =========================================================
   5. FEATURED PRODUCTS
========================================================= */

.featured-products-section {
    padding: 28px 7% 20px;
    background: #ffffff;
}

.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: #111111;
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 700;
}

.section-title-row h2 span {
    color: #e84c83;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
}

.section-title-row a {
    color: #e84c83;
    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 #f2dce5;
    border-radius: 10px;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
}

.sale-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    border-radius: 4px;
    background: #e84c83;
    color: #ffffff;
    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: #111111;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.15;
}

.featured-product-card p {
    margin: 0 0 14px;
    color: #333333;
    font-size: 16px;
}

.add-to-bag {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border-radius: 4px;
    background: #e84c83;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

/* =========================================================
   6. BUNDLE BANNER
========================================================= */

.bundle-banner-section {
    padding: 10px 7% 24px;
    background: #ffffff;
}

.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, #fff1f6 0%, #ffd9e7 100%);
}

.bundle-text p {
    margin: 0 0 4px;
    color: #e84c83;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-style: italic;
    line-height: 1;
}

.bundle-text h2 {
    margin: 0;
    color: #111111;
    font-family: Georgia, serif;
    font-size: 44px;
    line-height: 1;
}

.bundle-text span {
    display: block;
    max-width: 280px;
    margin: 10px 0 18px;
    color: #333333;
    font-size: 15px;
    line-height: 1.4;
}

.bundle-text a {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    background: #e84c83;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.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: #111111;
    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: #e84c83;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

/* =========================================================
   7. TRUST ICONS
========================================================= */

.trust-section {
    padding: 18px 7% 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    background: #ffffff;
}

.trust-card {
    padding: 26px 20px;
    border-radius: 18px;
    background: #fff7fa;
    text-align: center;
    border: 1px solid #f4dce6;
}

.trust-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff1f6;
    font-size: 28px;
}

.trust-card h3 {
    margin: 0 0 8px;
    color: #111111;
    font-size: 17px;
    font-weight: 800;
}

.trust-card p {
    margin: 0;
    color: #444444;
    font-size: 14px;
    line-height: 1.45;
}

/* =========================================================
   8. SHOP BY CATEGORY CIRCLES
========================================================= */

.shop-category-section {
    padding: 10px 7% 48px;
    background: #ffffff;
}

.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: #f2b7cd;
}

.shop-category-title h2 {
    margin: 0;
    color: #111111;
    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: #111111;
}

.shop-category-image {
    width: 96px;
    height: 96px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #fff1f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-category-image img {
    max-width: 76px;
    max-height: 76px;
    object-fit: contain;
}

.shop-category-item p {
    margin: 0;
    color: #111111;
    font-size: 15px;
    font-weight: 800;
}

.shop-category-item:hover .shop-category-image {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(232, 76, 131, 0.18);
}

.shop-category-image {
    transition: 0.3s ease;
}

/* =========================================================
   9. FOOTER
========================================================= */

.faith-footer {
    background: linear-gradient(135deg, #fff5f8 0%, #ffe0eb 100%);
    color: #111111;
    border-top: 1px solid #f2b7cd;
}

.faith-footer-inner {
    padding: 48px 7% 34px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 34px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 14px;
    color: #111111;
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1px;
}

.footer-logo span {
    color: #e84c83;
}

.footer-brand p {
    max-width: 360px;
    margin: 0;
    color: #333333;
    font-size: 15px;
    line-height: 1.65;
}

.footer-column h3 {
    margin: 0 0 16px;
    color: #111111;
    font-size: 16px;
    font-weight: 900;
}

.footer-column a {
    display: block;
    margin-bottom: 11px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.footer-column a:hover {
    color: #e84c83;
}

.footer-contact p {
    margin: 0 0 16px;
    color: #333333;
    font-size: 14px;
    line-height: 1.5;
}

.footer-whatsapp {
    display: inline-block !important;
    margin-bottom: 16px !important;
    padding: 12px 20px;
    border-radius: 999px;
    background: #e84c83;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #e84c83;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f2b7cd;
    font-size: 12px;
    font-weight: 900;
}

.faith-footer-bottom {
    padding: 18px 7%;
    border-top: 1px solid rgba(232, 76, 131, 0.18);
    text-align: center;
}

.faith-footer-bottom p {
    margin: 0;
    color: #444444;
    font-size: 13px;
}

/* =========================================================
   10. WOOCOMMERCE SINGLE PRODUCT PAGE - FINAL CLEAN VERSION
========================================================= */

/* Full product page wrapper */
.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: #ffffff;
}

/* Main product layout */
.single-product .woocommerce div.product,
.single-product div.product {
    width: 100% !important;
    max-width: 1280px !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;
}

/* Product image card */
.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: #fff7fa !important;
    border: 1px solid #f3d6e1 !important;
}

/* Product image */
.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;
}

/* Product info card */
.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: #ffffff !important;
    border: 1px solid #f3d6e1 !important;
    box-shadow: 0 18px 40px rgba(232, 76, 131, 0.08) !important;
}

/* Product title */
.single-product .product_title {
    margin: 0 0 14px !important;
    color: #111111 !important;
    font-family: Georgia, serif !important;
    font-size: 46px !important;
    line-height: 1.05 !important;
}

/* Price */
.single-product .summary .price {
    margin: 0 0 18px !important;
    color: #e84c83 !important;
    font-size: 32px !important;
    font-weight: 900 !important;
}

/* Short description */
.single-product .woocommerce-product-details__short-description {
    margin-bottom: 22px !important;
    color: #333333 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

/* Cart form */
.single-product form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 24px 0 22px !important;
}

/* Quantity */
.single-product .quantity input.qty {
    width: 76px !important;
    height: 50px !important;
    border: 1px solid #f2b7cd !important;
    border-radius: 12px !important;
    background: #fff7fa !important;
    color: #111111 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

/* Add to cart button */
.single-product button.single_add_to_cart_button {
    min-height: 50px !important;
    padding: 0 34px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #ff5c9a, #e84c83) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(232, 76, 131, 0.28);
}

.single-product button.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(232, 76, 131, 0.36);
}

/* Meta */
.single-product .product_meta {
    margin-top: 22px !important;
    padding-top: 18px !important;
    border-top: 1px solid #f3d6e1 !important;
    color: #555555 !important;
    font-size: 13px !important;
}

.single-product .product_meta a {
    color: #e84c83 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

/* Added to cart message */
.single-product .woocommerce-message {
    max-width: 1280px !important;
    margin: 20px auto 0 !important;
    border-top-color: #e84c83 !important;
}

.single-product .woocommerce-message .button {
    background: #e84c83 !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
}


/* =========================================================
   PRODUCT DESCRIPTION / TABS
========================================================= */

/* Make description span across both product columns */
.single-product div.product .woocommerce-tabs,
.single-product .woocommerce div.product .woocommerce-tabs {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px 0 70px !important;
    padding: 0 !important;
    clear: both !important;
}

/* Tab navigation */
.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 #f3d6e1 !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: #111111 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: #e84c83 !important;
}

/* Description box */
.single-product .woocommerce-Tabs-panel,
.single-product #tab-description {
    width: 100% !important;
    max-width: 100% !important;
    padding: 42px 48px !important;
    border-radius: 24px !important;
    background: #fff7fa !important;
    border: 1px solid #f3d6e1 !important;
    color: #333333 !important;
    line-height: 1.75 !important;
}

/* Description text */
.single-product #tab-description h2 {
    margin-top: 0 !important;
    color: #111111 !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 {
    color: #111111 !important;
    font-size: 20px !important;
    line-height: 1.35 !important;
}

.single-product #tab-description p,
.single-product #tab-description li {
    color: #333333 !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.single-product #tab-description ul,
.single-product #tab-description ol {
    padding-left: 24px !important;
    margin-bottom: 22px !important;
}

/* Related products */
.single-product .related.products {
    grid-column: 1 / -1 !important;
    max-width: 1280px !important;
    margin: 0 auto 60px !important;
    padding: 0 !important;
}

.single-product .related.products h2 {
    margin-bottom: 22px !important;
    color: #111111 !important;
    font-family: Georgia, serif !important;
    font-size: 30px !important;
}


/* =========================================================
   SINGLE PRODUCT - TABLET
========================================================= */

@media (max-width: 900px) {

    .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;
    }

    .single-product .summary .price {
        font-size: 26px !important;
    }

    .single-product .woocommerce div.product div.summary,
    .single-product div.product div.summary {
        padding: 30px !important;
    }

    .single-product .woocommerce-Tabs-panel,
    .single-product #tab-description {
        padding: 34px 30px !important;
    }
}


/* =========================================================
   SINGLE PRODUCT - MOBILE
========================================================= */

@media (max-width: 600px) {

    .single-product .woocommerce div.product,
    .single-product div.product {
        display: block !important;
        padding: 28px 18px 36px !important;
    }

    .single-product .woocommerce div.product div.images,
    .single-product div.product div.images {
        padding: 18px !important;
        margin-bottom: 18px !important;
        border-radius: 20px !important;
    }

    .single-product .woocommerce div.product div.images img,
    .single-product div.product div.images img {
        max-width: 100% !important;
        max-height: 420px !important;
    }

    .single-product .woocommerce div.product div.summary,
    .single-product div.product div.summary {
        padding: 24px 18px !important;
        border-radius: 20px !important;
    }

    .single-product .product_title {
        font-size: 32px !important;
    }

    .single-product .summary .price {
        font-size: 24px !important;
    }

    .single-product form.cart {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .single-product .quantity input.qty {
        width: 100% !important;
    }

    .single-product button.single_add_to_cart_button {
        width: 100% !important;
    }

    .single-product div.product .woocommerce-tabs,
    .single-product .woocommerce div.product .woocommerce-tabs {
        grid-column: auto !important;
        margin: 18px 0 50px !important;
        padding: 0 !important;
    }

    .single-product .woocommerce-tabs ul.tabs {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 14px !important;
    }

    .single-product .woocommerce-tabs ul.tabs li a {
        padding: 12px 10px !important;
        font-size: 13px !important;
    }

    .single-product .woocommerce-Tabs-panel,
    .single-product #tab-description {
        padding: 26px 20px !important;
        border-radius: 20px !important;
    }

    .single-product #tab-description h2 {
        font-size: 26px !important;
    }

    .single-product #tab-description h3,
    .single-product #tab-description h4 {
        font-size: 18px !important;
    }

    .single-product #tab-description p,
    .single-product #tab-description li {
        font-size: 14px !important;
    }

    .single-product .related.products {
        padding: 0 !important;
    }
}

/* =========================================================
   11. WOOCOMMERCE SHOP / CATEGORY PAGES
========================================================= */

/* Page background */
.woocommerce-shop,
.tax-product_cat {
    background: #ffffff;
}

/* Main shop wrapper */
.woocommerce-shop .site-main,
.tax-product_cat .site-main,
.woocommerce-shop main,
.tax-product_cat main {
    background: #ffffff;
}

/* Shop content width */
.woocommerce-shop .woocommerce,
.tax-product_cat .woocommerce {
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 48px 5% 70px !important;
}

/* Page title */
.woocommerce-shop .woocommerce-products-header__title,
.tax-product_cat .woocommerce-products-header__title,
.woocommerce-shop .page-title,
.tax-product_cat .page-title {
    margin: 0 0 18px !important;
    color: #111111 !important;
    font-family: Georgia, serif !important;
    font-size: 42px !important;
    line-height: 1.1 !important;
}

/* Result count */
.woocommerce-shop .woocommerce-result-count,
.tax-product_cat .woocommerce-result-count {
    margin: 0 0 22px !important;
    color: #555555 !important;
    font-size: 14px !important;
}

/* Sorting dropdown */
.woocommerce-shop .woocommerce-ordering,
.tax-product_cat .woocommerce-ordering {
    margin: 0 0 22px !important;
}

.woocommerce-shop .woocommerce-ordering select,
.tax-product_cat .woocommerce-ordering select {
    height: 44px !important;
    padding: 0 16px !important;
    border: 1px solid #f2b7cd !important;
    border-radius: 999px !important;
    background: #fff7fa !important;
    color: #111111 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

/* Product grid */
.woocommerce-shop ul.products,
.tax-product_cat ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    margin: 20px 0 0 !important;
    padding: 0 !important;
}

/* Product card */
.woocommerce-shop ul.products li.product,
.tax-product_cat ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 18px 18px 20px !important;
    border: 1px solid #f2dce5 !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    text-align: center !important;
    overflow: hidden !important;
    transition: 0.3s ease !important;
}

.woocommerce-shop ul.products li.product:hover,
.tax-product_cat ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(232, 76, 131, 0.12);
}

/* Product image */
.woocommerce-shop ul.products li.product img,
.tax-product_cat ul.products li.product img {
    width: 100% !important;
    height: 210px !important;
    object-fit: contain !important;
    margin: 0 auto 14px !important;
    border-radius: 14px !important;
    background: #fff7fa !important;
    padding: 16px !important;
}

/* Sale badge */
.woocommerce-shop span.onsale,
.tax-product_cat span.onsale {
    min-height: auto !important;
    min-width: auto !important;
    padding: 7px 12px !important;
    border-radius: 6px !important;
    background: #e84c83 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

/* Product title */
.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
.tax-product_cat ul.products li.product .woocommerce-loop-product__title {
    min-height: 44px !important;
    padding: 0 !important;
    margin: 0 0 8px !important;
    color: #111111 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
}

/* Price */
.woocommerce-shop ul.products li.product .price,
.tax-product_cat ul.products li.product .price {
    margin: 0 0 14px !important;
    color: #e84c83 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

/* Add to cart button */
.woocommerce-shop ul.products li.product .button,
.tax-product_cat ul.products li.product .button {
    width: 100% !important;
    padding: 11px 14px !important;
    border-radius: 999px !important;
    background: #e84c83 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    transition: 0.3s ease !important;
}

.woocommerce-shop ul.products li.product .button:hover,
.tax-product_cat ul.products li.product .button:hover {
    background: #111111 !important;
}

/* Pagination */
.woocommerce-shop .woocommerce-pagination,
.tax-product_cat .woocommerce-pagination {
    margin-top: 36px !important;
}

.woocommerce-shop .woocommerce-pagination ul,
.tax-product_cat .woocommerce-pagination ul {
    border: none !important;
}

.woocommerce-shop .woocommerce-pagination ul li,
.tax-product_cat .woocommerce-pagination ul li {
    border: none !important;
    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: #fff1f6 !important;
    color: #111111 !important;
    font-weight: 800 !important;
}

.woocommerce-shop .woocommerce-pagination ul li span.current,
.tax-product_cat .woocommerce-pagination ul li span.current {
    background: #e84c83 !important;
    color: #ffffff !important;
}


/* =========================================================
   SHOP / CATEGORY MOBILE
========================================================= */

@media (max-width: 900px) {

    .woocommerce-shop .woocommerce,
    .tax-product_cat .woocommerce {
        padding: 34px 18px 56px !important;
    }

    .woocommerce-shop ul.products,
    .tax-product_cat ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }

    .woocommerce-shop ul.products li.product img,
    .tax-product_cat ul.products li.product img {
        height: 180px !important;
    }

    .woocommerce-shop .woocommerce-products-header__title,
    .tax-product_cat .woocommerce-products-header__title,
    .woocommerce-shop .page-title,
    .tax-product_cat .page-title {
        font-size: 34px !important;
    }
}

@media (max-width: 600px) {

    .woocommerce-shop .woocommerce,
    .tax-product_cat .woocommerce {
        padding: 28px 14px 48px !important;
    }

    .woocommerce-shop ul.products,
    .tax-product_cat ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .woocommerce-shop ul.products li.product,
    .tax-product_cat ul.products li.product {
        padding: 14px 10px 14px !important;
        border-radius: 16px !important;
    }

    .woocommerce-shop ul.products li.product img,
    .tax-product_cat ul.products li.product img {
        height: 145px !important;
        padding: 12px !important;
        margin-bottom: 10px !important;
    }

    .woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
    .tax-product_cat 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 {
        font-size: 14px !important;
    }

    .woocommerce-shop ul.products li.product .button,
    .tax-product_cat ul.products li.product .button {
        padding: 10px 8px !important;
        font-size: 12px !important;
    }

    .woocommerce-shop .woocommerce-result-count,
    .tax-product_cat .woocommerce-result-count,
    .woocommerce-shop .woocommerce-ordering,
    .tax-product_cat .woocommerce-ordering {
        float: none !important;
        width: 100% !important;
    }

    .woocommerce-shop .woocommerce-ordering select,
    .tax-product_cat .woocommerce-ordering select {
        width: 100% !important;
    }
}

/* =========================================================
   SHOP / CATEGORY PAGE SIDEBAR + LAYOUT FIX
========================================================= */

/* Hide default WordPress sidebar/widgets on 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;
}

/* Force shop/category pages to full width */
.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;
}

/* Main WooCommerce shop container */
.woocommerce-shop .woocommerce,
.tax-product_cat .woocommerce {
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 55px 7% 80px !important;
    background: #ffffff !important;
}

/* Category page title */
.woocommerce-shop .page-title,
.tax-product_cat .page-title,
.woocommerce-shop .woocommerce-products-header__title,
.tax-product_cat .woocommerce-products-header__title {
    margin: 0 0 10px !important;
    color: #111111 !important;
    font-family: Georgia, serif !important;
    font-size: 46px !important;
    line-height: 1.1 !important;
    text-transform: capitalize !important;
}

/* Result count + sorting row */
.woocommerce-shop .woocommerce-result-count,
.tax-product_cat .woocommerce-result-count {
    float: left !important;
    margin: 0 0 28px !important;
    color: #555555 !important;
    font-size: 14px !important;
}

.woocommerce-shop .woocommerce-ordering,
.tax-product_cat .woocommerce-ordering {
    float: right !important;
    margin: 0 0 28px !important;
}

/* Clear before products */
.woocommerce-shop ul.products,
.tax-product_cat ul.products {
    clear: both !important;
}

/* Product grid alignment */
.woocommerce-shop ul.products,
.tax-product_cat ul.products {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    margin: 30px 0 0 !important;
    padding: 0 !important;
}

/* Product card */
.woocommerce-shop ul.products li.product,
.tax-product_cat ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 18px 18px 20px !important;
    border: 1px solid #f2dce5 !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    text-align: center !important;
}

/* Product image */
.woocommerce-shop ul.products li.product img,
.tax-product_cat 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: #fff7fa !important;
}

/* Mobile shop/category */
@media (max-width: 900px) {
    .woocommerce-shop .woocommerce,
    .tax-product_cat .woocommerce {
        padding: 38px 18px 60px !important;
    }

    .woocommerce-shop ul.products,
    .tax-product_cat ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }

    .woocommerce-shop .page-title,
    .tax-product_cat .page-title,
    .woocommerce-shop .woocommerce-products-header__title,
    .tax-product_cat .woocommerce-products-header__title {
        font-size: 36px !important;
    }
}

@media (max-width: 600px) {
    .woocommerce-shop .woocommerce,
    .tax-product_cat .woocommerce {
        padding: 30px 14px 50px !important;
    }

    .woocommerce-shop .woocommerce-result-count,
    .tax-product_cat .woocommerce-result-count,
    .woocommerce-shop .woocommerce-ordering,
    .tax-product_cat .woocommerce-ordering {
        float: none !important;
        width: 100% !important;
    }

    .woocommerce-shop .woocommerce-ordering select,
    .tax-product_cat .woocommerce-ordering select {
        width: 100% !important;
    }

    .woocommerce-shop ul.products,
    .tax-product_cat ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .woocommerce-shop ul.products li.product,
    .tax-product_cat 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 {
        height: 145px !important;
        padding: 12px !important;
    }
}

/* =========================================================
   CLEAN WOOCOMMERCE SHOP TEMPLATE
========================================================= */

.faith-shop-page {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 55px 7% 80px;
    background: #ffffff;
}

.faith-shop-page .woocommerce-products-header__title,
.faith-shop-page .page-title {
    margin: 0 0 10px !important;
    color: #111111 !important;
    font-family: Georgia, serif !important;
    font-size: 46px !important;
    line-height: 1.1 !important;
    text-transform: capitalize !important;
}

.faith-shop-page .woocommerce-result-count {
    margin: 0 0 28px !important;
    color: #555555 !important;
    font-size: 14px !important;
}

.faith-shop-page .woocommerce-ordering {
    margin: 0 0 28px !important;
}

.faith-shop-page ul.products {
    clear: both !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    margin: 30px 0 0 !important;
    padding: 0 !important;
}

.faith-shop-page ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 18px 18px 20px !important;
    border: 1px solid #f2dce5 !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    text-align: center !important;
    overflow: hidden !important;
}

.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: #fff7fa !important;
}

.faith-shop-page ul.products li.product .woocommerce-loop-product__title {
    min-height: 44px !important;
    padding: 0 !important;
    margin: 0 0 8px !important;
    color: #111111 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
}

.faith-shop-page ul.products li.product .price {
    margin: 0 0 14px !important;
    color: #e84c83 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

.faith-shop-page ul.products li.product .button {
    width: 100% !important;
    padding: 11px 14px !important;
    border-radius: 999px !important;
    background: #e84c83 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

.faith-shop-page ul.products li.product .button:hover {
    background: #111111 !important;
}

@media (max-width: 900px) {
    .faith-shop-page {
        padding: 38px 18px 60px;
    }

    .faith-shop-page ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }

    .faith-shop-page .page-title,
    .faith-shop-page .woocommerce-products-header__title {
        font-size: 36px !important;
    }
}

@media (max-width: 600px) {
    .faith-shop-page {
        padding: 30px 14px 50px;
    }

    .faith-shop-page .woocommerce-result-count,
    .faith-shop-page .woocommerce-ordering {
        float: none !important;
        width: 100% !important;
    }

    .faith-shop-page .woocommerce-ordering select {
        width: 100% !important;
    }

    .faith-shop-page ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .faith-shop-page ul.products li.product {
        padding: 14px 10px !important;
        border-radius: 16px !important;
    }

    .faith-shop-page ul.products li.product img {
        height: 145px !important;
        padding: 12px !important;
    }
}

/* =========================================================
   12. WOOCOMMERCE CART PAGE
========================================================= */

.woocommerce-cart .site-main,
.woocommerce-cart main,
.woocommerce-cart .woocommerce {
    background: #ffffff !important;
}

.woocommerce-cart .woocommerce {
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 55px 7% 80px !important;
}

/* Cart title */
.woocommerce-cart .entry-title,
.woocommerce-cart .page-title {
    margin: 0 0 28px !important;
    color: #111111 !important;
    font-family: Georgia, serif !important;
    font-size: 44px !important;
    line-height: 1.1 !important;
}

/* Cart table */
.woocommerce-cart table.shop_table {
    border: 1px solid #f3d6e1 !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border-collapse: separate !important;
}

.woocommerce-cart table.shop_table th {
    padding: 18px 16px !important;
    background: #fff1f6 !important;
    color: #111111 !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 #f3d6e1 !important;
    color: #333333 !important;
    font-size: 14px !important;
}

/* Product image */
.woocommerce-cart table.cart img {
    width: 78px !important;
    height: 78px !important;
    object-fit: contain !important;
    padding: 8px !important;
    border-radius: 14px !important;
    background: #fff7fa !important;
}

/* Product name */
.woocommerce-cart table.cart .product-name a {
    color: #111111 !important;
    text-decoration: none !important;
    font-weight: 900 !important;
}

.woocommerce-cart table.cart .product-name a:hover {
    color: #e84c83 !important;
}

/* Quantity */
.woocommerce-cart .quantity input.qty {
    width: 76px !important;
    height: 46px !important;
    border: 1px solid #f2b7cd !important;
    border-radius: 12px !important;
    background: #fff7fa !important;
    color: #111111 !important;
    font-weight: 800 !important;
}

/* Coupon */
.woocommerce-cart .coupon input.input-text {
    width: 220px !important;
    height: 46px !important;
    padding: 0 16px !important;
    border: 1px solid #f2b7cd !important;
    border-radius: 999px !important;
    background: #fff7fa !important;
    color: #111111 !important;
}

.woocommerce-cart .coupon button,
.woocommerce-cart table.cart button.button {
    height: 46px !important;
    padding: 0 22px !important;
    border-radius: 999px !important;
    background: #111111 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

/* Cart totals */
.woocommerce-cart .cart-collaterals {
    margin-top: 34px !important;
}

.woocommerce-cart .cart_totals {
    width: 420px !important;
    padding: 28px !important;
    border: 1px solid #f3d6e1 !important;
    border-radius: 24px !important;
    background: #fff7fa !important;
    box-shadow: 0 18px 40px rgba(232, 76, 131, 0.08);
}

.woocommerce-cart .cart_totals h2 {
    margin: 0 0 18px !important;
    color: #111111 !important;
    font-family: Georgia, serif !important;
    font-size: 30px !important;
}

.woocommerce-cart .cart_totals table {
    border: none !important;
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
    padding: 14px 0 !important;
    border-top: 1px solid #f3d6e1 !important;
}

/* Checkout button */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: block !important;
    width: 100% !important;
    padding: 16px 20px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #ff5c9a, #e84c83) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(232, 76, 131, 0.28);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: #111111 !important;
}

/* Empty cart */
.woocommerce-cart .cart-empty {
    padding: 34px !important;
    border-radius: 22px !important;
    background: #fff7fa !important;
    border: 1px solid #f3d6e1 !important;
    color: #111111 !important;
    font-weight: 800 !important;
}

.woocommerce-cart .return-to-shop a.button {
    padding: 14px 28px !important;
    border-radius: 999px !important;
    background: #e84c83 !important;
    color: #ffffff !important;
    font-weight: 900 !important;
}


/* =========================================================
   CART PAGE MOBILE
========================================================= */

@media (max-width: 768px) {

    .woocommerce-cart .woocommerce {
        padding: 34px 18px 60px !important;
    }

    .woocommerce-cart .entry-title,
    .woocommerce-cart .page-title {
        font-size: 34px !important;
    }

    .woocommerce-cart table.shop_table {
        border-radius: 18px !important;
    }

    .woocommerce-cart table.shop_table th,
    .woocommerce-cart table.shop_table td {
        padding: 14px 10px !important;
        font-size: 13px !important;
    }

    .woocommerce-cart table.cart img {
        width: 60px !important;
        height: 60px !important;
    }

    .woocommerce-cart .coupon {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .woocommerce-cart .coupon input.input-text {
        width: 100% !important;
    }

    .woocommerce-cart .coupon button,
    .woocommerce-cart table.cart button.button {
        width: 100% !important;
    }

    .woocommerce-cart .cart_totals {
        width: 100% !important;
        padding: 24px 18px !important;
    }

    .woocommerce-cart .cart_totals h2 {
        font-size: 26px !important;
    }
}

/* =========================================================
   GENERAL WORDPRESS PAGE CONTENT
========================================================= */

.faith-page {
    width: 100%;
    background: #ffffff;
}

.faith-page-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 55px 7% 80px;
}

/* =========================================================
   13. WOOCOMMERCE CART BLOCK STYLING
========================================================= */

.woocommerce-cart .faith-page-content {
    max-width: 1280px;
    padding: 55px 7% 80px;
}

/* Main cart block layout */
.woocommerce-cart .wp-block-woocommerce-cart {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 34px;
    align-items: start;
}

/* Product table area */
.woocommerce-cart .wc-block-cart-items,
.woocommerce-cart .wc-block-cart__main {
    width: 100%;
}

/* Product row */
.woocommerce-cart .wc-block-cart-items__row {
    border-bottom: 1px solid #f3d6e1 !important;
}

/* Product image */
.woocommerce-cart .wc-block-cart-item__image img {
    width: 86px !important;
    height: 86px !important;
    object-fit: contain !important;
    padding: 8px !important;
    border-radius: 14px !important;
    background: #fff7fa !important;
}

/* Product name */
.woocommerce-cart .wc-block-components-product-name {
    color: #111111 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

/* Product price */
.woocommerce-cart .wc-block-components-product-price,
.woocommerce-cart .wc-block-cart-item__total {
    color: #e84c83 !important;
    font-weight: 900 !important;
}

/* Quantity selector */
.woocommerce-cart .wc-block-components-quantity-selector {
    border: 1px solid #f2b7cd !important;
    border-radius: 999px !important;
    background: #fff7fa !important;
}

/* Cart totals panel */
.woocommerce-cart .wc-block-cart__sidebar {
    padding: 28px !important;
    border: 1px solid #f3d6e1 !important;
    border-radius: 24px !important;
    background: #fff7fa !important;
    box-shadow: 0 18px 40px rgba(232, 76, 131, 0.08);
}

/* Cart totals title */
.woocommerce-cart .wc-block-cart__totals-title {
    color: #111111 !important;
    font-family: Georgia, serif !important;
    font-size: 28px !important;
    font-weight: 900 !important;
}

/* Total price */
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    color: #111111 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}

/* Checkout button */
.woocommerce-cart .wc-block-cart__submit-button {
    border-radius: 999px !important;
    background: linear-gradient(135deg, #ff5c9a, #e84c83) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    box-shadow: 0 10px 24px rgba(232, 76, 131, 0.28);
}

.woocommerce-cart .wc-block-cart__submit-button:hover {
    background: #111111 !important;
}

/* Coupon accordion */
.woocommerce-cart .wc-block-components-panel,
.woocommerce-cart .wc-block-components-totals-coupon {
    border-top: 1px solid #f3d6e1 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce-cart .faith-page-content {
        padding: 34px 18px 60px;
    }

    .woocommerce-cart .wp-block-woocommerce-cart {
        display: block;
    }

    .woocommerce-cart .wc-block-cart__sidebar {
        margin-top: 24px;
        padding: 24px 18px !important;
        border-radius: 20px !important;
    }

    .woocommerce-cart .wc-block-cart-item__image img {
        width: 68px !important;
        height: 68px !important;
    }

    .woocommerce-cart .wc-block-cart__totals-title {
        font-size: 24px !important;
    }
}

/* =========================================================
   CART BLOCK FINAL WIDTH + SPACING FIX
========================================================= */

.woocommerce-cart .faith-page-content {
    max-width: 1280px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 60px 7% 90px !important;
}

/* Use more space on desktop */
.woocommerce-cart .wp-block-woocommerce-cart {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr) !important;
    gap: 48px !important;
    align-items: start !important;
}

/* Left cart table/card */
.woocommerce-cart .wc-block-cart__main {
    width: 100% !important;
    border: 1px solid #f3d6e1 !important;
    border-radius: 24px !important;
    padding: 24px !important;
    background: #ffffff !important;
}

/* Product row spacing */
.woocommerce-cart .wc-block-cart-items__row {
    padding: 18px 0 !important;
}

/* Product image */
.woocommerce-cart .wc-block-cart-item__image img {
    width: 92px !important;
    height: 92px !important;
    object-fit: contain !important;
    padding: 10px !important;
    border-radius: 16px !important;
    background: #fff7fa !important;
}

/* Product name */
.woocommerce-cart .wc-block-components-product-name {
    color: #111111 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

/* Remove link-looking checkout button */
.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .wc-block-components-button {
    width: 100% !important;
    min-height: 48px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #ff5c9a, #e84c83) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    box-shadow: 0 10px 24px rgba(232, 76, 131, 0.28) !important;
}

/* Cart totals sidebar */
.woocommerce-cart .wc-block-cart__sidebar {
    width: 100% !important;
    padding: 30px !important;
    border: 1px solid #f3d6e1 !important;
    border-radius: 24px !important;
    background: #fff7fa !important;
    box-shadow: 0 18px 40px rgba(232, 76, 131, 0.08) !important;
}

.woocommerce-cart .wc-block-cart__totals-title {
    color: #111111 !important;
    font-family: Georgia, serif !important;
    font-size: 30px !important;
    font-weight: 900 !important;
}

.woocommerce-cart .wc-block-components-totals-footer-item {
    border-top: 1px solid #f3d6e1 !important;
    padding-top: 18px !important;
}

.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    color: #111111 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce-cart .faith-page-content {
        padding: 34px 18px 60px !important;
    }

    .woocommerce-cart .wp-block-woocommerce-cart {
        display: block !important;
    }

    .woocommerce-cart .wc-block-cart__main {
        padding: 18px !important;
        border-radius: 20px !important;
    }

    .woocommerce-cart .wc-block-cart__sidebar {
        margin-top: 24px !important;
        padding: 24px 18px !important;
        border-radius: 20px !important;
    }

    .woocommerce-cart .wc-block-cart-item__image img {
        width: 68px !important;
        height: 68px !important;
    }

    .woocommerce-cart .wc-block-cart__totals-title {
        font-size: 24px !important;
    }
}

/* =========================================================
   CART PAGE FINAL CENTERED STACKED LAYOUT
========================================================= */

.woocommerce-cart .wp-block-woocommerce-cart {
    max-width: 760px !important;
    margin: 0 auto !important;
    display: block !important;
}

.woocommerce-cart .wc-block-cart__main,
.woocommerce-cart .wc-block-cart__sidebar {
    width: 100% !important;
    max-width: 100% !important;
}

.woocommerce-cart .wc-block-cart__sidebar {
    margin-top: 24px !important;
}

.woocommerce-cart .wc-block-cart__main {
    border: 1px solid #f3d6e1 !important;
    border-radius: 24px !important;
    padding: 24px !important;
    background: #ffffff !important;
}

.woocommerce-cart .wc-block-cart__sidebar {
    padding: 34px !important;
    border: 1px solid #f3d6e1 !important;
    border-radius: 24px !important;
    background: #fff7fa !important;
    box-shadow: 0 18px 40px rgba(232, 76, 131, 0.08) !important;
}

@media (max-width: 600px) {
    .woocommerce-cart .wp-block-woocommerce-cart {
        max-width: 100% !important;
    }

    .woocommerce-cart .wc-block-cart__main,
    .woocommerce-cart .wc-block-cart__sidebar {
        padding: 20px !important;
        border-radius: 20px !important;
    }
}

/* =========================================================
   14. WOOCOMMERCE CHECKOUT BLOCK STYLING - SAFE FINAL
========================================================= */

.woocommerce-checkout .faith-page-content {
    max-width: 1180px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 60px 7% 90px !important;
}

/* Default: stacked layout, safer for narrow screens */
.woocommerce-checkout .wc-block-checkout {
    display: block !important;
    width: 100% !important;
}

/* Left form area */
.woocommerce-checkout .wc-block-checkout__main {
    width: 100% !important;
    max-width: 720px !important;
    margin: 0 auto !important;
    padding: 30px !important;
    border: 1px solid #f3d6e1 !important;
    border-radius: 24px !important;
    background: #ffffff !important;
}

/* Right order summary becomes a centered card below */
.woocommerce-checkout .wc-block-checkout__sidebar {
    width: 100% !important;
    max-width: 720px !important;
    margin: 28px auto 0 !important;
    padding: 30px !important;
    border: 1px solid #f3d6e1 !important;
    border-radius: 24px !important;
    background: #fff7fa !important;
    box-shadow: 0 18px 40px rgba(232, 76, 131, 0.08) !important;
}

/* Use two columns only on genuinely wide desktop screens */
@media (min-width: 1100px) {
    .woocommerce-checkout .wc-block-checkout {
        display: grid !important;
        grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.75fr) !important;
        gap: 42px !important;
        align-items: start !important;
    }

    .woocommerce-checkout .wc-block-checkout__main,
    .woocommerce-checkout .wc-block-checkout__sidebar {
        max-width: none !important;
        margin: 0 !important;
    }
}

/* Section headings */
.woocommerce-checkout .wc-block-components-title,
.woocommerce-checkout .wc-block-checkout__main h2,
.woocommerce-checkout .wc-block-components-checkout-step__title {
    color: #111111 !important;
    font-family: Georgia, serif !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    word-break: normal !important;
}

/* Labels */
.woocommerce-checkout label,
.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-combobox label {
    color: #111111 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

/* Inputs */
.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 #f2b7cd !important;
    border-radius: 12px !important;
    background: #fff7fa !important;
    color: #111111 !important;
    font-size: 14px !important;
}

/* Focus */
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    outline: none !important;
    border-color: #e84c83 !important;
    box-shadow: 0 0 0 3px rgba(232, 76, 131, 0.12) !important;
}

/* Order summary product image */
.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: #ffffff !important;
}

/* Order summary text */
.woocommerce-checkout .wc-block-components-product-name {
    color: #111111 !important;
    font-weight: 900 !important;
}

.woocommerce-checkout .wc-block-components-product-price,
.woocommerce-checkout .wc-block-components-totals-item__value {
    color: #111111 !important;
    font-weight: 900 !important;
}

/* Panels */
.woocommerce-checkout .wc-block-components-panel,
.woocommerce-checkout .wc-block-components-checkout-step,
.woocommerce-checkout .wc-block-components-totals-wrapper {
    border-color: #f3d6e1 !important;
}

/* Payment warning */
.woocommerce-checkout .wc-block-components-notice-banner,
.woocommerce-checkout .wc-block-components-notice-banner.is-error {
    border-radius: 14px !important;
    border-color: #f2b7cd !important;
    background: #fff1f6 !important;
    color: #111111 !important;
}

/* Place order button */
.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, #ff5c9a, #e84c83) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    box-shadow: 0 10px 24px rgba(232, 76, 131, 0.28) !important;
}

/* Return to cart link */
.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
    color: #111111 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce-checkout .faith-page-content {
        padding: 34px 18px 60px !important;
    }

    .woocommerce-checkout .wc-block-checkout__main,
    .woocommerce-checkout .wc-block-checkout__sidebar {
        padding: 24px 18px !important;
        border-radius: 20px !important;
    }

    .woocommerce-checkout .wc-block-components-title,
    .woocommerce-checkout .wc-block-checkout__main h2,
    .woocommerce-checkout .wc-block-components-checkout-step__title {
        font-size: 22px !important;
    }

    .woocommerce-checkout .wc-block-components-order-summary-item__image img {
        width: 62px !important;
        height: 62px !important;
    }
}

/* Checkout note checkbox spacing */
.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;
}

.woocommerce-checkout .wc-block-components-checkbox label {
    line-height: 1.4 !important;
}

/* =========================================================
   FAITH LK - RESTORE HOMEPAGE MOBILE VIEW
   Paste this at the VERY BOTTOM of main.css
========================================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        padding-top: 86px;
        background: #ffffff;
    }

    * {
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* ================= HEADER MOBILE ================= */

    .faith-header {
        background: #ffffff;
    }

    .faith-header-inner {
        height: 86px;
        padding: 0 18px;
        gap: 12px;
        display: flex;
        align-items: center;
    }

    .faith-logo {
        font-size: 26px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .faith-nav,
    .faith-icon-link {
        display: none !important;
    }

    .faith-actions {
        gap: 10px;
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    .faith-cart {
        padding: 10px 14px;
        font-size: 13px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .faith-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        border-radius: 15px;
        background: #fff1f6;
    }

    .faith-mobile-menu {
        padding: 18px 20px 24px;
    }

    /* ================= HERO MOBILE ================= */

    .hero {
        width: calc(100% - 24px);
        min-height: auto;
        margin: 12px auto 0;
        padding: 48px 24px 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        overflow: hidden;
        border-radius: 0;
        background: linear-gradient(135deg, #fff5f8 0%, #ffd7e5 100%);
    }

    .hero-text {
        width: 100%;
        max-width: 360px;
        position: relative;
        z-index: 5;
    }

    .script {
        margin-bottom: 18px;
        color: #111111;
        font-size: 20px;
    }

    .hero h1 {
        color: #111111;
        font-size: 48px;
        line-height: 0.95;
        letter-spacing: -1px;
        margin: 0;
    }

    .hero h1:first-line {
        color: #e84c83;
    }

    .hero h1 span {
        font-size: 34px;
    }

    .hero-desc {
        max-width: 310px;
        margin-top: 28px;
        color: #111111;
        font-size: 19px;
        line-height: 1.45;
    }

    .hero-buttons {
        width: 100%;
        max-width: 340px;
        margin-top: 28px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        position: relative;
        z-index: 6;
    }

    .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;
        bottom: auto;
        width: 100%;
        margin-top: 20px;
        z-index: 2;
        pointer-events: none;
        text-align: center;
    }

    .hero-image img,
    .hero-img {
        width: 100%;
        max-width: 360px;
        max-height: none;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    /* ================= CATEGORY CARDS MOBILE ================= */

    .category-section {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 36px 18px 56px;
        overflow: hidden;
        background: #ffffff;
    }

    .category-card {
        width: 100%;
        min-width: 0;
        min-height: 250px;
        padding: 26px 20px;
        border-radius: 24px;
        background: #fff1f6;
    }

    .category-card h3 {
        margin-bottom: 22px;
        color: #111111;
        font-size: 30px;
        line-height: 0.95;
    }

    .category-card p {
        margin-bottom: 28px;
        color: #111111;
        font-size: 17px;
        line-height: 1.4;
    }

    .category-card a {
        color: #e84c83;
        font-size: 17px;
    }

    /* ================= FEATURED PRODUCTS MOBILE ================= */

    .featured-products-section {
        padding: 30px 18px 18px;
        background: #ffffff;
        overflow: hidden;
    }

    .section-title-row {
        gap: 12px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .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 {
        width: 100%;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px;
        overflow: hidden;
    }

    .featured-product-card {
        width: 100%;
        min-width: 0 !important;
        max-width: 100%;
        padding: 16px 12px 16px;
        border-radius: 16px;
        overflow: hidden;
    }

    .product-image-box {
        width: 100%;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-image-box img {
        max-width: 100%;
        max-height: 145px;
        object-fit: contain;
    }

    .featured-product-card h3 {
        min-height: 40px;
        font-size: 15px;
        line-height: 1.2;
        word-break: normal;
    }

    .featured-product-card p {
        font-size: 14px;
    }

    .add-to-bag {
        width: 100%;
        padding: 10px 8px;
        font-size: 12px;
        border-radius: 8px;
        text-align: center;
        white-space: normal;
    }

    .sale-badge {
        top: 10px;
        left: 10px;
        padding: 5px 9px;
        font-size: 10px;
    }

    .heart-icon {
        top: 8px;
        right: 10px;
        font-size: 24px;
    }

    /* ================= BUNDLE MOBILE ================= */

    .bundle-banner-section {
        padding: 10px 18px 24px;
        background: #ffffff;
    }

    .bundle-banner {
        padding: 28px 22px;
        display: grid;
        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;
        object-fit: contain;
    }

    .bundle-products strong {
        font-size: 34px;
    }

    .bundle-save {
        width: 86px;
        height: 86px;
        font-size: 18px;
    }

    /* ================= TRUST MOBILE ================= */

    .trust-section {
        padding: 14px 18px 34px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        background: #ffffff;
    }

    .trust-card {
        padding: 22px 14px;
        border-radius: 16px;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
        font-size: 25px;
    }

    .trust-card h3 {
        font-size: 16px;
    }

    .trust-card p {
        font-size: 13px;
    }

    /* ================= SHOP CATEGORY CIRCLES MOBILE ================= */

    .shop-category-section {
        padding: 8px 18px 42px;
        background: #ffffff;
        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;
        margin-bottom: 10px;
    }

    .shop-category-image img {
        max-width: 58px;
        max-height: 58px;
        object-fit: contain;
    }

    .shop-category-item p {
        font-size: 13px;
    }

    /* ================= FOOTER MOBILE ================= */

    .faith-footer-inner {
        padding: 40px 18px 26px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 26px 18px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo {
        font-size: 32px;
    }

    .footer-brand p {
        max-width: 100%;
        font-size: 14px;
    }

    .footer-column h3 {
        font-size: 15px;
    }

    .footer-column a {
        font-size: 14px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .faith-footer-bottom {
        padding: 16px 18px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 430px) {

    .faith-header-inner {
        padding: 0 14px;
    }

    .faith-logo {
        font-size: 24px;
    }

    .faith-cart {
        padding: 10px 13px;
        font-size: 13px;
    }

    .faith-menu-toggle {
        width: 48px;
        height: 48px;
    }

    .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;
    }

    .category-card p {
        font-size: 15px;
    }

    .category-card a {
        font-size: 16px;
    }

    .featured-products-section {
        padding: 28px 12px 16px;
    }

    .section-title-row h2 {
        font-size: 24px;
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .featured-product-card {
        min-width: 0 !important;
        padding: 14px 10px 14px;
    }

    .product-image-box {
        height: 135px;
    }

    .product-image-box img {
        max-height: 130px;
    }

    .featured-product-card h3 {
        font-size: 14px;
    }

    .add-to-bag {
        font-size: 11px;
        padding: 10px 6px;
    }

    .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;
    }

    .bundle-products img {
        max-width: 100px;
        max-height: 125px;
    }

    .bundle-save {
        width: 78px;
        height: 78px;
        font-size: 16px;
    }

    .trust-section {
        padding: 12px 12px 32px;
        gap: 12px;
    }

    .trust-card {
        padding: 20px 12px;
    }

    .trust-card h3 {
        font-size: 15px;
    }

    .trust-card p {
        font-size: 12px;
    }

    .shop-category-section {
        padding: 6px 12px 38px;
    }

    .shop-category-title {
        gap: 10px;
    }

    .shop-category-title h2 {
        font-size: 23px;
    }

    .shop-category-grid {
        gap: 10px;
    }

    .shop-category-item {
        min-width: 76px;
    }

    .shop-category-image {
        width: 70px;
        height: 70px;
    }

    .shop-category-image img {
        max-width: 54px;
        max-height: 54px;
    }

    .shop-category-item p {
        font-size: 12px;
    }

    .faith-footer-inner {
        padding: 36px 12px 24px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .footer-logo {
        font-size: 30px;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
    }

    .faith-footer-bottom {
        padding: 16px 12px;
    }
}