/* Product Page Specific Styles */
#products {
    background-color: #f8f9fa;
}

.product-card {
    border: 1px solid red; /* Added thin red border */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #cc0000; /* Slightly darker red on hover */
}

.product-card .card-title {
    color: red;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.product-variations {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-variations .variation {
    padding: 5px 10px;
    background-color: #e9ecef;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.product-variations .variation:hover {
    background-color: #dee2e6;
}

.product-variations .variation.active {
    background-color: red;
    color: white;
}

/* Button styles */
.product-card .btn {
    background-color: red;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.product-card .btn:hover {
    background-color: #cc0000; /* Darker red on hover */
    color: white;
}

.product-card .btn-outline {
    background-color: transparent;
    color: red;
    border: 1px solid red;
}

.product-card .btn-outline:hover {
    background-color: red;
    color: white;
}

.product-specs {
    min-height: 120px;
}

.product-specs .spec {
    display: none;
    font-size: 0.85rem;
}

.product-specs .spec.active {
    display: block;
}

.product-specs p {
    margin-bottom: 0.3rem;
}

.card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-variations {
        justify-content: center;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
}

#header .ajit-enterprise {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    
}

