body {
    font-family: 'Segoe UI', sans-serif;
}

.top-bar {
    background: #111;
    color: #fff;
    font-size: 14px;
}

.main-navbar {
    background: #000;
}

.nav-link {
    color: #fff !important;
    margin: 0 10px;
    font-weight: 500;
}

.nav-link:hover {
    color: #ff6a00 !important;
}

.highlight-link {
    color: #ff6a00 !important;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff6a00;
    color: #fff;
    font-size: 12px;
    padding: 3px 7px;
    border-radius: 50%;
}
.hero-section {
    height: 100vh;
    background:
        linear-gradient(to right, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%),
        url('../images/hero.jpg') center center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
}


.btn-primary {
    background: #ff6a00;
    border: none;
}
.btn-outline-light {
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

.category-card {
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.product-card {
    padding: 15px;
}

.price {
    font-weight: bold;
    color: #ff6a00;
}
.footer-section {
    background: #000;
    color: #fff;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-subtitle {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-text {
    color: #ccc;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6a00;
}

.footer-divider {
    border-color: #333;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ff6a00;
}

.newsletter-form input {
    background: #111;
    border: 1px solid #333;
    color: #fff;
}

.newsletter-form input:focus {
    background: #111;
    border-color: #ff6a00;
    box-shadow: none;
}
.category-card img {
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.text-accent {
    color: #ff6a00;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
}
.hero-section h1,
.hero-section p,
.hero-section a {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.hero-trust-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-divider {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.4);
}

.hero-trust {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-weight: 600;
}


.nav-link {
    padding-left: 12px !important;
    padding-right: 12px !important;
}


.hero-section h1 { animation-delay: 0.2s; }
.hero-section p { animation-delay: 0.4s; }
.hero-section a { animation-delay: 0.6s; }

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-trust-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-divider {
        width: 40px;
    }
}

