.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    border-color: var(--bs-primary);
}

.product-card:hover .product-name {
    color: var(--bs-primary) !important;
}

.product-card img.card-img-top {
    transition: transform 0.4s ease;
}

.product-card:hover img.card-img-top {
    transform: scale(1.1);
}

/* Hero Carousel */
#heroCarousel .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

#heroCarousel .carousel-caption {
    max-width: 500px;
}

#heroCarousel .carousel-caption h2 {
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

#heroCarousel .carousel-caption p {
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Footer */
.footer-custom {
    background: #0f172a;
    color: #94a3b8;
    padding: 2.5rem 0 1.25rem;
}

.footer-custom h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.footer-custom p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a i {
    font-size: 0.6rem;
    color: #64748b;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--web-primary, #0f766e);
    padding-left: 3px;
}

.footer-links a:hover i {
    color: var(--web-primary, #0f766e);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contact-item i {
    margin-top: 0.25rem;
    flex-shrink: 0;
    color: var(--web-primary, #0f766e);
    width: 14px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social-icon:hover {
    background: var(--web-primary, #0f766e);
    color: #fff;
    transform: translateY(-2px);
}

.footer-custom hr {
    border-color: rgba(255,255,255,0.08);
    margin: 1.5rem 0;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: #64748b;
}

.back-to-top {
    color: #64748b;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.back-to-top:hover {
    color: var(--web-primary, #0f766e);
}

.footer-section {
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .footer-section {
        margin-bottom: 0;
    }
}
