/* Remove bullets */
ul.wc-block-product-categories-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Grid layout */
ul.wc-block-product-categories-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 20px !important;
    margin: 20px 0 !important;
}

/* Card styling - matching contact page */
.wc-block-product-categories-list-item {
    background: #ffffff !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 20px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    margin: 0 !important;
}

/* Hover effect - matching contact page orange theme */
.wc-block-product-categories-list-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(247, 147, 26, 0.15) !important;
    border-color: #f7931a !important;
}

/* Style the links - orange theme */
.wc-block-product-categories-list-item a {
    text-decoration: none !important;
    color: #1a1a1a !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    display: block !important;
}

.wc-block-product-categories-list-item:hover a {
    color: #f7931a !important;
}

/* Style the count - orange accent */
.wc-block-product-categories-list-item-count {
    display: inline-block !important;
    margin-left: 8px !important;
    color: #f7931a !important;
    font-size: 13px !important;
    background: rgba(247, 147, 26, 0.1) !important;
    padding: 3px 10px !important;
    border-radius: 10px !important;
    font-weight: 500 !important;
}

/* Responsive */
@media (max-width: 768px) {
    ul.wc-block-product-categories-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    ul.wc-block-product-categories-list {
        grid-template-columns: 1fr !important;
    }
}
/* About page text styling */
.page-id-about .entry-content,
.page-template-default .entry-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Introductory text */
.page-id-about .entry-content > p:first-of-type,
.page-template-default .entry-content > p:first-of-type {
    font-size: 1.15em;
    color: #555;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Main body text */
.page-id-about .entry-content p,
.page-template-default .entry-content p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 20px;
}

/* Heading styling if you add any */
.page-id-about .entry-content h2,
.page-template-default .entry-content h2 {
    color: #1a1a1a;
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 4px solid #f7931a;
    padding-left: 15px;
}

/* "Our story:" label styling - more specific */
.entry-content p:first-of-type {
    color: #f7931a !important;
    font-weight: 600 !important;
    font-size: 1.1em !important;
}

/* Add some padding around content */
.page-id-about .entry-content,
.page-template-default .entry-content {
    padding: 20px;
}