
/* =====================================================
   main
===================================================== */

.carousel-item img {
    object-fit: cover;
    margin-bottom: 50px;
}

/* =====================================================
   BEST PRODUCT TITLE
===================================================== */

.best h2 {
    text-align: center;
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 40px;
    color: #0d6efd;
    position: relative;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s, color 0.3s;
}

.best h2::after {
    content: "";
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #00cfff);
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}

.best h2:hover {
    color: #00cfff;
    transform: scale(1.05);
}


/* =====================================================
   PRODUCTS SECTION
===================================================== */

.card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.card-title {
    font-weight: bold;
}

.add-to-cart {
    border-radius: 8px;
}

/* =====================================================
   FEATURED CATEGORIES
===================================================== */

.text-center img {
    height: 200px;
    object-fit: cover;
}

/* =====================================================
   FOOTER
===================================================== */

footer {
    background-color: #000000;
    color: #ffffff;
    margin-top: 3rem;
}

/* Footer titles */
footer h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Footer links */
.footer-link {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Footer container spacing */
footer .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Footer right columns */
footer .col-md-4.text-end {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Social icons */
.social-icons-wrapper {
    margin-top: 0.5rem;
}

.social-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: #ffd700;
    transform: scale(1.2);
}

/* Footer logo */
.footer-logo {
    max-width: 150px;
}

