﻿/* ===========================
        HERO SLIDER
=========================== */

#simpleSlider {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.slideItem {
    transition: 0.5s;
}

    .slideItem h1 {
        font-size: 48px;
        font-weight: bold;
    }

    .slideItem p {
        font-size: 22px;
    }

/* ===========================
      CATEGORY BUTTONS
=========================== */

.category-btn {
    margin: 5px;
    border-radius: 20px;
}

/* ===========================
      PRODUCT CARD
=========================== */

.product-card {
    background: white;
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    transition: .35s;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.18);
    }

    .product-card img {
        width: 220px;
        height: 220px;
        object-fit: cover;
        border-radius: 18px;
        transition: .35s;
    }

    .product-card:hover img {
        transform: scale(1.05);
    }

    .product-card h3 {
        font-weight: bold;
    }

.price {
    color: #198754;
    font-size: 24px;
    font-weight: bold;
}

/* ===========================
        FEATURES
=========================== */

.feature-box {
    background: white;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,.10);
    transition: .3s;
}

    .feature-box:hover {
        transform: translateY(-5px);
    }

    .feature-box h2 {
        font-size: 42px;
    }

    .feature-box h4 {
        font-weight: bold;
    }

/* ===========================
        JUMBOTRON
=========================== */

.jumbotron {
    border-radius: 25px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,.10);
}
#simpleSlider {
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 0 20px #ccc;
}

.slideItem {
    height: 320px;
    color: white;
    text-align: center;
    padding-top: 80px;
}

    .slideItem h1 {
        font-weight: bold;
    }

    .slideItem p {
        font-size: 22px;
    }

.slide-green {
    background: linear-gradient(135deg,#198754,#0b5d1e);
}

.slide-orange {
    background: linear-gradient(135deg,#ff9800,#e65100);
}

.slide-blue {
    background: linear-gradient(135deg,#0d6efd,#063970);
}

.features-row,
.categories-box {
    margin-bottom: 30px;
}

.feature-box {
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    background: white;
    box-shadow: 0 0 15px #ddd;
}

.section-title {
    text-align: center;
    margin-bottom: 25px;
    color: #0b5d1e;
    font-weight: bold;
}

.product-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 20px;
    box-shadow: 0 0 20px #ddd;
    min-height: 560px;
}

.product-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.price {
    color: green;
    font-weight: bold;
}

.stars {
    color: #ff9800;
    font-size: 18px;
}

.product-note {
    color: #666;
}

.quantity-box {
    width: 90px;
    display: inline-block;
    margin-bottom: 10px;
}

.why-box {
    border-radius: 20px;
}