/* Custom CSS */
.section-3d {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.section-3d::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #ccc; /* Lighter border color */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow for 3D effect */
}

.big-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem; /* Large padding for big button */
    font-size: 1.5rem;  /* Larger font */
    text-align: center;
    border-radius: 10% / 50%; /* More rounded corners */
    cursor: pointer;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 3D effect with shadow */
    transition: all 0.3s ease;
    user-select: none; /* Prevent text selection */
    margin: 10px;
    position: relative;
}

.big-button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
    transform: translateY(-2px); /* Lift button on hover */
}

.big-button:active {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* Reduce shadow on click */
    transform: translateY(1px); /* Button depress effect on click */
}

.product-img {
    width: 50px; /* Adjust size as needed */
    height: 50px;
    margin-right: 10px;
    border-radius: 4px;
}

/* Flexbox container for products */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4px; /* Space between items */
    justify-content: space-between; /* Distribute items evenly with space between */
}

/* Individual product item */
.product-item {
    flex: 1 1 calc(33.333% - 16px); /* 3 items per row with gap adjustment */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* making component red on mouse over */
.navbar-nav .dropdown-menu .dropdown-item.hover-red:hover,
.dropdown-item.hover-red:hover {
    background-color: red !important;
}


