/* ADJUST THE FONT SIZE FOR THE MAIN SITE TITLES */
h1.sp-page-title-heading {
    font-size: 48px !important; /* Adjust this number to make it larger or smaller */
    font-weight: 250;           /* Optional: makes it bold */
    line-height: 1.2;           /* Optional: ensures spacing is clean */
}

/* Adjust size for mobile screens */
@media (max-width: 768px) {
    h1.sp-page-title-heading {
        font-size: 32px !important;
    }
}


/* INCREASE THE CATEGORY TITLE FONT SIZE ON THE HOMEPAGE */
.eshop-info-block h5 a {
    font-size: 24px !important; /* Adjust this number to your preferred size */
    font-weight: 600;           /* Optional: makes the text slightly bolder */
    display: block;             /* Ensures the clickable area is consistent */
    margin-bottom: 10px;        /* Adds a little space below the title */
}

/* Hover effect (Optional) */
.eshop-info-block h5 a:hover {
    color: #007bff;             /* Changes color when you mouse over it */
    text-decoration: none;
}


