﻿/* ================= FONT ================= */
body {
    font-family: 'Heebo', sans-serif;
}

/* ================= NAVBAR ================= */


.vc-navbar {
    background: #fff;
    height: 90px;
    display: flex;
    align-items: center;
}

/* ================= LOGO ================= */
.vc-logo img {
    height: 55px;
}

/* ================= MENU ================= */
.vc-menu {
    list-style: none;
    display: flex;
    gap: 38px;
    margin: 0;
    padding: 0;
}

    .vc-menu li a {
        font-size: 17px;
        font-weight: 600;
        color: #111;
        text-decoration: none;
        text-transform: uppercase;
        line-height: 1;
    }

        .vc-menu li a:hover {
            color: #28a745;
        }

/* ================= CART ================= */
.vc-cart {
    width: 42px;
    height: 42px;
    background: #f4c430;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    text-decoration: none;
}

.vc-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 50%;
}

/* ================= BUTTONS ================= */
.vc-btn-register,
.vc-btn-login {
    height: 42px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .vc-menu {
        display: none;
    }
}







.vincumin-footer .footer-top {
    padding: 40px 0 20px;
}


.vincumin-footer .footer-desc {
    font-size: 14px;
    max-width: 600px;
}

.vincumin-footer .footer-links {
    padding: 30px 0;
}

.vincumin-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .vincumin-footer ul li {
        margin-bottom: 6px;
    }

.vincumin-footer .widget-title {
    margin-bottom: 12px;
}

.vincumin-footer .contact-list i {
    margin-right: 6px;
}

.vincumin-footer .social {
    margin-top: 10px;
}

    .vincumin-footer .social a {
        margin-right: 10px;
    }




/* Custom CSS for better integration with your theme */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    }

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.view-all-link {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .view-all-link:hover {
        color: #218838;
        text-decoration: underline;
    }

.badge {
    font-size: 0.7rem;
    padding: 5px 10px;
    z-index: 2;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    transition: all 0.3s ease;
}

    .btn-success:hover {
        background-color: #218838;
        border-color: #1e7e34;
        transform: translateY(-2px);
    }

.btn-secondary:disabled {
    cursor: not-allowed;
}

.text-success {
    color: #28a745 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .view-all-link {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        display: inline-block;
        margin-top: 10px;
    }

    .card-img-top {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .card-img-top {
        height: 160px;
    }

    .product-card {
        margin-bottom: 20px;
    }
}




.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px; /* 👈 reduced height */
    font-size: 14px;
    line-height: 1; /* 👈 fixes vertical icon shift */
    border-radius: 6px;
    border: 1.5px solid #28a745;
    color: #28a745;
    text-decoration: none;
    white-space: nowrap;
}

    .nav-btn i {
        font-size: 15px;
        line-height: 1; /* 👈 icon alignment fix */
    }

    .nav-btn:hover {
        background: #28a745;
        color: #fff;
    }

    .nav-btn.outline {
        background: transparent;
    }

        .nav-btn.outline:hover {
            background: #28a745;
            color: #fff;
        }








.bg-badge {
    background: #fffbf3;
}

.main-title {
    text-align: center;
    color: #ff6a3d;
    font-weight: 700;
}

.subtitle {
    text-align: center;
    color: #6c757d;
}

/* Card styling */
.feature-card {
    border: none;
    border-radius: 18px;
    text-align: center;
    padding-top: 30px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
    }

/* Icon container */
.card-icon {
    width: 170px;
    height: 112px;
    margin: 0 auto 15px;
    background: #eaf6ec;
    border-radius: 100px 100px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-icon img {
        width: 100px;
        height: 100px;
    }

/* Card titles */
.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #198754;
}

/* Footer text */
.card-footer {
    background: transparent;
    border-top: none;
    font-size: 0.85rem;
}

/* Different pastel backgrounds */
.card-1 .card-icon {
    background: #eaf6ec;
}

.card-2 .card-icon {
    background: #fff2e2;
}

.card-3 .card-icon {
    background: #eef4ff;
}

.card-4 .card-icon {
    background: #f3eaff;
}
