/* Common Bootstrap Integration Styles */
/* ================================================== */

/* Navigation Styles */
.navbar-brand img {
    height: 50px;
}

/* Hero Section */
.hero-slider {
    position: relative;
    overflow: hidden;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* News Items */
.news-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.news-item:last-child {
    border-bottom: none;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Social Links */
.social-links a {
    margin: 0 5px;
    display: inline-block;
}

/* Footer */
.footer-links a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
    
    .footer-links a {
        display: block;
        margin: 5px 0;
    }
}

/* Additional Common Styles */
.btn-custom {
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 500;
}

.section-spacing {
    padding: 60px 0;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Text Utilities */
.text-gradient {
    background: linear-gradient(45deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,123,255,.3);
    border-radius: 50%;
    border-top-color: #007bff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
