/* ===== Art Prints for Christians Theme ===== */

/* Variables */
:root {
    --cap-cream: #FAF8F5;
    --cap-warm-white: #FFFFFF;
    --cap-off-white: #FCFCFC;
    --cap-sage: #8FA98C;
    --cap-sage-dark: #6B7F68;
    --cap-sage-light: #B8CDB5;
    --cap-gold: #C9A96E;
    --cap-gold-dark: #B8965A;
    --cap-gold-light: #E1D1A8;
    --cap-charcoal: #2C2C2C;
    --cap-charcoal-light: #4A4A4A;
    --cap-text: #2C2C2C;
    --cap-text-light: #6B6B6B;
    --cap-text-muted: #9A9A9A;
    --cap-border: #E8E5E0;
    --cap-border-light: #F2F0ED;
    --cap-white: #FFFFFF;
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1320px;
    --container-narrow: 980px;
    --transition: all 0.3s ease;
    --shadow-light: 0 2px 8px rgba(44, 44, 44, 0.08);
    --shadow-medium: 0 4px 16px rgba(44, 44, 44, 0.12);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--cap-text);
    background-color: var(--cap-cream);
}

::selection { background: var(--cap-gold-light); color: var(--cap-charcoal); }

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

a { color: var(--cap-charcoal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--cap-sage-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--cap-charcoal);
    line-height: 1.3;
}

h1 { font-size: 2.5rem; font-weight: 500; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background-color: var(--cap-sage);
    color: var(--cap-white);
    text-align: center;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.announcement-bar a { color: var(--cap-white); text-decoration: underline; }

/* ===== HEADER ===== */
.site-header {
    background: var(--cap-white);
    border-bottom: 1px solid var(--cap-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
    box-shadow: var(--shadow-light);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--cap-charcoal);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo:hover { color: var(--cap-sage-dark); }

/* Primary Navigation */
.primary-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin-top: 16px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cap-text);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
    color: var(--cap-sage-dark);
    border-bottom-color: var(--cap-gold);
}

/* Dropdown Menus */
.nav-menu .menu-item-has-children {
    position: relative;
}

.nav-menu .menu-item-has-children > a::after {
    content: '▾';
    margin-left: 6px;
    font-size: 10px;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cap-white);
    border: 1px solid var(--cap-border);
    border-radius: 4px;
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-medium);
}

.nav-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    text-transform: none;
    letter-spacing: normal;
    border-bottom: none;
}

.sub-menu a:hover {
    background: var(--cap-cream);
    color: var(--cap-sage-dark);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--cap-text);
    cursor: pointer;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.9);
    z-index: 200;
}

.mobile-nav-inner {
    background: var(--cap-white);
    height: 100vh;
    max-width: 320px;
    padding: 60px 24px 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active .mobile-nav-inner {
    transform: translateX(0);
}

.mobile-nav .nav-menu {
    flex-direction: column;
    gap: 0;
    position: static;
    transform: none;
}

.mobile-nav .nav-menu a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--cap-border-light);
    font-size: 16px;
}

.mobile-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    transform: none;
    min-width: 0;
}

.mobile-nav .sub-open > .sub-menu {
    max-height: 500px;
}

.mobile-nav .menu-item-has-children > a::after {
    content: '+';
    float: right;
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.2s;
}

.mobile-nav .sub-open > a::after {
    transform: rotate(45deg);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--cap-text);
    cursor: pointer;
}

/* ===== MAIN CONTENT ===== */
.site-main {
    min-height: 60vh;
    padding: 40px 0 80px;
}

/* ===== HOMEPAGE HERO ===== */
.hero-section {
    background: var(--cap-white);
    padding: 80px 0 100px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--cap-charcoal);
}

.hero-content .hero-subtitle {
    font-size: 1.25rem;
    color: var(--cap-text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    background: var(--cap-sage);
    color: var(--cap-white);
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--cap-sage-dark);
    color: var(--cap-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== COLLECTIONS GRID ===== */
.collections-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--cap-charcoal);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--cap-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.collection-card {
    background: var(--cap-white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.collection-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.collection-card-content {
    padding: 24px;
    text-align: center;
}

.collection-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--cap-charcoal);
}

.collection-card p {
    color: var(--cap-text-light);
    margin-bottom: 20px;
}

.collection-card a {
    color: var(--cap-sage);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 13px;
}

.collection-card a:hover {
    color: var(--cap-sage-dark);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--cap-white);
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--cap-charcoal);
}

.about-text p {
    font-size: 1.125rem;
    color: var(--cap-text-light);
    margin-bottom: 24px;
}

.about-cta {
    color: var(--cap-sage);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-cta:hover { color: var(--cap-sage-dark); }

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    background: var(--cap-cream);
    padding: 60px 0;
    text-align: center;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-badge {
    text-align: center;
}

.trust-badge-icon {
    width: 60px;
    height: 60px;
    background: var(--cap-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--cap-white);
}

.trust-badge h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--cap-charcoal);
}

.trust-badge p {
    color: var(--cap-text-light);
    font-size: 14px;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--cap-white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 24px 20px;
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--cap-charcoal);
    line-height: 1.4;
}

.product-card .price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cap-sage-dark);
    font-family: var(--font-heading);
}

.product-card .category {
    font-size: 13px;
    color: var(--cap-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

/* ===== PRODUCT SINGLE PAGE ===== */
.product-hero {
    background: var(--cap-white);
    padding: 40px 0;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-main-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 20px;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    object-fit: cover;
}

.product-thumbnail.active,
.product-thumbnail:hover {
    opacity: 1;
    box-shadow: var(--shadow-light);
}

.product-details h1 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--cap-charcoal);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cap-sage-dark);
    font-family: var(--font-heading);
    margin-bottom: 24px;
}

.product-description {
    color: var(--cap-text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.product-options {
    margin-bottom: 32px;
}

.option-group {
    margin-bottom: 24px;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--cap-charcoal);
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-button {
    padding: 8px 16px;
    border: 1px solid var(--cap-border);
    background: var(--cap-white);
    color: var(--cap-text);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.option-button:hover,
.option-button.selected {
    border-color: var(--cap-sage);
    color: var(--cap-sage-dark);
    background: var(--cap-cream);
}

.add-to-cart-button {
    background: var(--cap-sage);
    color: var(--cap-white);
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.add-to-cart-button:hover {
    background: var(--cap-sage-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--cap-charcoal);
    color: var(--cap-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--cap-white);
    font-size: 1.125rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--cap-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--cap-sage);
    color: var(--cap-white);
}

.btn-primary:hover {
    background: var(--cap-sage-dark);
    color: var(--cap-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--cap-sage);
    border: 1px solid var(--cap-sage);
}

.btn-secondary:hover {
    background: var(--cap-sage);
    color: var(--cap-white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --container: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .container,
    .container-narrow {
        padding: 0 16px;
    }
    
    .site-main {
        padding: 20px 0 40px;
    }
    
    .hero-section {
        padding: 40px 0 60px;
    }
    
    .collections-section,
    .about-section {
        padding: 60px 0;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .option-buttons {
        flex-direction: column;
    }
    
    .option-button {
        text-align: center;
    }
}

/* ===== VARIATION PILL BUTTONS (LYH style) ===== */
.variation-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.var-pill {
    display: inline-block;
    padding: 10px 20px;
    border: 1.5px solid var(--cap-border);
    border-radius: 24px;
    background: var(--cap-white);
    color: var(--cap-text);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.var-pill:hover {
    border-color: var(--cap-charcoal);
    background: var(--cap-cream);
}

.var-pill.active {
    border-color: var(--cap-charcoal);
    background: var(--cap-charcoal);
    color: var(--cap-white);
}

.var-pill.unavailable {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Hide original WC selects when pills active */
.variations td select[style*="display: none"] + .variation-pills {
    display: flex;
}

/* ===== WC VARIATION SELECTS (fallback) ===== */
.woocommerce div.product form.cart .variations {
    width: 100%;
    margin-bottom: 24px;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
    display: block;
    width: 100%;
    padding: 4px 0;
    border: none;
}

.woocommerce div.product form.cart .variations label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cap-charcoal);
    margin-bottom: 4px;
}

.woocommerce div.product form.cart .variations select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--cap-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--cap-text);
    background: var(--cap-white);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
    transition: var(--transition);
}

.woocommerce div.product form.cart .variations select:focus {
    outline: none;
    border-color: var(--cap-sage);
    box-shadow: 0 0 0 2px rgba(143, 169, 140, 0.2);
}

.woocommerce div.product form.cart .variations .reset_variations {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--cap-text-muted);
}

/* WC Single Product */
.woocommerce div.product .woocommerce-product-gallery {
    width: 50% !important;
    float: left;
}

.woocommerce div.product .summary {
    width: 45% !important;
    float: right;
}

.woocommerce div.product .product_title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--cap-charcoal);
    margin-bottom: 16px;
}

.woocommerce div.product p.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cap-sage-dark);
    margin-bottom: 24px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--cap-text-light);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    background: var(--cap-sage) !important;
    color: var(--cap-white) !important;
    padding: 16px 32px !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    width: 100% !important;
    margin-top: 16px !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: var(--cap-sage-dark) !important;
    transform: translateY(-1px) !important;
    box-shadow: var(--shadow-light) !important;
}

.woocommerce div.product .woocommerce-tabs {
    clear: both;
    padding-top: 60px;
}

/* Price range display */
.woocommerce div.product p.price .woocommerce-Price-amount {
    font-family: var(--font-heading);
}

.woocommerce div.product .woocommerce-variation-price .price {
    font-size: 1.5rem;
    color: var(--cap-sage-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

/* ===== WOOCOMMERCE OVERRIDES ===== */
.woocommerce .products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 32px !important;
}

.woocommerce ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    background: var(--cap-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.woocommerce ul.products li.product a {
    display: block;
    text-decoration: none;
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--cap-charcoal);
    margin: 16px 20px 8px;
}

.woocommerce ul.products li.product .price {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cap-sage-dark);
    margin: 0 20px 20px;
}

/* Remove default WooCommerce styles */
.woocommerce ul.products li.product .button {
    display: none;
}

.woocommerce .woocommerce-ordering {
    margin-bottom: 24px;
}

.woocommerce .woocommerce-result-count {
    margin-bottom: 24px;
    color: var(--cap-text-light);
    font-size: 14px;
}