﻿.grayscale {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

    .grayscale:hover {
        filter: none;
        opacity: 1;
    }

.rounded-4 {
    border-radius: 1rem;
}

.bg-maroon {
    background-color: #560014; /* Adjust to match your theme color */
    color: white;
}

.use-case-circle {
    background-color: #560014; /* Deep maroon */
    width: 360px;
    height: 360px;
    border-radius: 50%;
    padding: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

    .use-case-circle img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

.floating-img {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    object-fit: cover;
}

.essentials-list li {
    margin-bottom: 10px;
}

.shop-now-btn {
    background-color: #4C1012;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2.5rem; /* py-2 px-5 */
    border-radius: 999px; /* pill shape */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    border: none;
}

    .shop-now-btn:hover {
        background-color: #380b0d;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }
.bg-maroon {
    background-color: #540c0c;
}

@media (max-width: 768px) {
    .rounded-circle {
        border-radius: 1rem !important;
    }

    ul li {
        font-size: 1rem;
    }
}

/* Typography standards */
.about-heading {
    font-size: 36px;
    font-weight: 700; /* fw-bold equivalent */
    color: #ffffff;
}

.about-paragraph {
    font-size: 16px;
    color: #ffffff;
}

/* Optional: Reusable button style (already using Bootstrap, just for enhancement) */
.about-button {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}


