.navbar-collapse {
    overflow: visible !important;
}
.dropdown-menu {
    z-index: 2000 !important;
}
#cartDropdown .dropdown-menu {
    display: none;
}
#cartDropdown.show .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}


.rating-option {
        cursor: pointer;
        padding: 10px;
        border-radius: 10px;
        transition: 0.3s ease;
    }
    
    .rating-option:hover {
        background: #f8f8f8;
    }
    
    .rating-box {
        width: 22px;
        height: 22px;
        border: 2px solid #ff7f32;
        border-radius: 5px;
        display: block;
        margin: 0 auto;
    }
    
    .rating-box:checked {
        background: #ff7f32;
    }
    
    
    .credit-card {
            border-radius: 18px;
            padding: 18px 22px;
            background: #fff;
            border: 2px solid #f5f5f5;
            transition: 0.3s ease;
            cursor: pointer;
        }
        .credit-card:hover {
            border-color: #ff7f32;
            background: #fff8f2;
        }
        .credit-card.active {
            border-color: #ff7f32;
            background: #ffe9d9;
        }
        .credit-icon {
            font-size: 32px;
        }
        .credit-price {
            color: #ff7f32;
            font-weight: 700;
        }
        
        
    #starRating .star {
            cursor: pointer;
            margin-right: 4px;
            font-size: 22px;
        }

    

 .post-card {
            border-radius: 12px;
            background: white;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0px 2px 8px rgba(0,0,0,0.08);
        }
        .post-author {
            font-weight: 600;
            color: #007bff;
        }
        .post-date {
            color: #777;
            font-size: 0.9rem;
        }
        .section-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .review-section {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0px 2px 8px rgba(0,0,0,0.08);
        }