/* Base Styles */
:root {
    --ss-orange: #F5A623;
    --ss-charcoal: #5B4B8A;
    --ss-dark: #2D2159;
    --ss-light-bg: #F7F5FC;
    --ss-whatsapp: #25D366;
}

* {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

/* Header Styles */
.ss-header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-link {
    color: var(--ss-dark) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ss-orange) !important;
}

/* Hero Section */
.ss-hero-home {
    background: linear-gradient(rgba(45, 33, 89, 0.7), rgba(45, 33, 89, 0.7)), 
                url('/images/hero/hero-main.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    text-align: center;
    color: white;
}

.ss-hero-home h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.ss-hero-home .btn-primary {
    background: var(--ss-orange);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
}

/* Footer Styles */
.ss-footer {
    background: var(--ss-dark);
    color: #cccccc;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.ss-footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--ss-orange);
}

.social-icons a {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: var(--ss-orange);
    color: white;
}

/* Product Grid */
.ss-product-grid {
    padding: 60px 0;
}

.ss-product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.ss-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ss-product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.ss-product-card .card-body {
    padding: 20px;
}

.ss-product-card .price {
    color: var(--ss-orange);
    font-size: 24px;
    font-weight: 700;
}

/* Services Section */
.ss-services {
    padding: 80px 0;
    background: var(--ss-light-bg);
}

.ss-service-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.ss-service-card:hover {
    transform: translateY(-10px);
}

.ss-service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .ss-hero-home h1 {
        font-size: 32px;
    }
}