body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}

/* Override Bootstrap's .display-4 class */
.display-1 {
    font-weight: 800 !important; /* Set font weight to 800 */
    line-height: 1.138888889 !important; /* Set custom line height */
    font-size: 2.5rem !important; /* Set font size to 2.5rem */
}

.quote {
    font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
}

.entry-content p {
    font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

/* Separator styling */
.separator-container {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.separator-line {
    border: none;
    height: 1px;
    background: #ccc;
    width: 100%;
    margin: 30px 0;
}

.separator-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 0 15px;
}

.separator-slash {
    color: #999;
    font-size: 16px;
}

/* Product headings */
.product-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-subheading {
    font-style: italic;
    text-decoration: underline;
}

/* Card styling */
.card-border-none {
    border: 0;
}

.card-title-custom {
    font-weight: 600;
    font-size: 1.1rem;
}

.card-text-custom {
    color: #777;
    font-size: 0.9rem;
}

/* Category headings */
.category-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Button styling */
.btn-full-width {
    width: 100%;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-full-width:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Discount box */
.discount-box {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 2rem;
}

/* Footer styling */
.footer-custom {
    background-color: #d9edf7;
    padding: 30px 0;
}

/* Footer link styling with hover effect */
.footer-link {
    color: #5cb85c;
    margin: 0 10px;
    text-decoration: underline;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover, 
.footer-link:focus {
    color: #449d44; /* Darker shade of green */
    text-decoration: underline;
    /* Override any default bootstrap hover color */
    background-color: transparent;
}

/* This ensures the visited state doesn't turn purple */
.footer-link:visited {
    color: #5cb85c;
}

.footer-link:visited:hover {
    color: #449d44;
}

.footer-text {
    line-height: 1.4;
    color: #555;
    font-size: 0.9rem !important;
    font-weight: bold;
}

.footer-copyright {
    font-size: 0.75rem !important;
    margin-bottom: 0;
    color: #777;
}

/* Link styling */
.link-red {
    color: #e74c3c;
    text-decoration: underline;
    font-weight: 900;
    transition: all 0.3s ease;
}

.link-red:hover {
    color: #c0392b;
    text-decoration: underline;
    font-weight: 800;
}

/* Add this to your existing styles in the head section */
.product-grid-spacing {
    line-height: 1.2;
    text-align: left !important;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}


@media (min-width: 768px) {
    .product-column {
        flex-basis: 32%;
    }
}

.product-grid-spacing .product-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    line-height: 1.4;
}

.product-grid-spacing .product-text {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .display-1 {
        font-size: 2rem !important;
    }
    
    .entry-content p {
        font-size: 1.1rem;
    }
    
    .product-heading {
        font-size: 1.5rem;
    }
}
