/* Main Styles */
:root {
    --primary: #c62828;
    --secondary: #2e7d32;
    --dark: #212529;
    --light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    margin-top: -76px;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    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.2);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-left: 10px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #a71c1c;
    border-color: #a71c1c;
}

/* Cart */
.cart-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-total {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* Footer */
.ellylya-footer {
    background: #0f1f2f;
    color: #ffffff;
    padding-top: 70px;
    font-size: 0.95rem;
}

.footer-logo-img {
    max-width: 180px;
}

.footer-text {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.footer-links li i {
    margin-right: 8px;
    color: #d4af37;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #8b0000;
    transform: translateY(-4px);
}

/* Bottom Bar */
.footer-bottom {
    background: #0b1622;
    padding: 15px 0;
    margin-top: 50px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    margin-left: 15px;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #d4af37;
}



