/* Custom CSS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-in-out;
}

.animate-slideInLeft {
    animation: slideInLeft 1s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 1s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.hero-slide {
    transition: opacity 0.5s ease-in-out;
}

.section-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.section-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, #070F0A 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, #070F0A 25%, transparent 25%) -50px 0,
                linear-gradient(315deg, #070F0A 25%, transparent 25%),
                linear-gradient(45deg, #070F0A 25%, transparent 25%);
    background-size: 100px 100px;
    transform: rotate(180deg);
}

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

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

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #488A31;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.active-nav::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #488A31;
}