/* h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

h5 {
  font-size: 1rem;
  font-weight: 400;
}

h6 {
  color: #d8d8d8;
} */

body {
    min-height: 100vh;
}

/* Bootstrap */
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(182, 109, 1, 0.25);
    border-color: #b66d01;
}

.navTabTi .nav-pills .nav-link {
    color: #333;
    text-align: start;
    transition: 0.4s ease;
}

.navTabTi .nav-pills .nav-link:hover {
    color: #fff;
    background-color: #e30000;
    transition: 0.4s ease;
}

.navTabTi .nav-pills .nav-link.active {
    color: #fff;
    background-color: #e30000;
    transition: 0.4s ease;
}

.navTabTi .nav-pills .nav-link:disabled {
    color: #333;
    background-color: #fff;
    transition: 0.4s ease;
}

.navTabTi .nav-tabs .nav-link {
    color: #333;
    text-align: start;
    transition: 0.4s ease;
}

.navTabTi .nav-tabs .nav-link:hover {
    color: #fff;
    background-color: #e30000;
    transition: 0.4s ease;
}

.navTabTi .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #e30000;
    transition: 0.4s ease;
}

/* !Bootstrap */

.btn-ti {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: 0.4s ease;
    cursor: pointer;
    text-align: center;
}

.btn-rounded-1-ti {
    border-radius: 5px;
    transition: 0.4s ease;
}

.btn-rounded-2-ti {
    border-radius: 10px;
    transition: 0.4s ease;
}

.btn-rounded-3-ti {
    border-radius: 15px;
    transition: 0.4s ease;
}

.btn-rounded-4-ti {
    border-radius: 20px;
    transition: 0.4s ease;
}

.btn-rounded-5-ti {
    border-radius: 25px;
    transition: 0.4s ease;
}

.btn-default-ti {
    background-color: #fff;
    border: 2px solid #b66d01;
    color: #b66d01;
    transition: 0.4s ease;
}

.btn-default-ti:hover {
    background-color: #b66d01;
    color: #fff;
}

.btn-primary-ti {
    background-color: #b66d01;
    border: 2px solid #b66d01;
    color: #fff;
    /* transition: 0.4s ease; */
}

.btn-primary-ti:hover {
    background-color: #fff;
    color: #b66d01;
}

.btn-outline-primary-ti {
    background-color: #fff;
    border: 2px solid #b66d01;
    color: #b66d01;
    transition: 0.4s ease;
}

.btn-outline-primary-ti:hover {
    background-color: #b66d01;
    color: #fff;
}

/* Navbar */
.topNavLink {
    color: #fff;
    transition: 0.4s ease;
}

.topNavLink:hover {
    color: #333;
    text-shadow: 0 0 5px #fff;
    transition: 0.4s ease;
}

.topNavLink.active {
    color: #333;
    text-shadow: 0 0 10px #fff;
    transition: 0.4s ease;
}

/* Hot Sale Section*/
.hotSaleCard {
    border-radius: 20px;
    overflow: hidden;
    /* transition: 0.4s ease; */
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.8);
}

/* Shop Section */
.newArrivalCard {
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.8);
}

.shopSectionCard {
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.8);
}

/* Product Card Box */
.productCardBox {
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s ease;
    padding: 5px;
}

.productCardBox:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.8);
    /* transform: scale(1.1); */
}

.productCardBox img {
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
    aspect-ratio: 1/1;
}

.productName {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    transition: 0.4s ease;
    height: 48px; /* add this line */
    overflow: hidden; /* add this line */
    display: -webkit-box; /* add this line */
    -webkit-line-clamp: 2; /* add this line */
    -webkit-box-orient: vertical; /* add this line */
}

.productPrice {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e30000;
    transition: 0.4s ease;
}

@media (max-width: 576px) {
    .productName {
        font-size: 0.7rem;
    }
    .productPrice {
        font-size: 0.8rem;
    }
}

/* Bottom Nav */
.bottomNav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* background-color: #e30000; */
    /* brown color */
    background-color: #b66d01;
    color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.bottomNav .bottomNavItem {
    text-align: center;
    color: #fff;
    transition: 0.4s ease;
}

.bottomNav .bottomNavItem:hover {
    background-color: #fff;
    color: #b66d01;
}

.bottomNav .bottomNavItem.active {
    background-color: #fff;
    color: #b66d01;
}

/* Product Page */
.productPreviewImgBtn {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
    aspect-ratio: 1/1;
}

.hover-shadow {
    transition: all 0.3s ease-in-out;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); */
    transform: translateY(0); /* Moves the card down */
}

.hover-shadow:hover {
    transform: translateY(-5px); /* Moves the card up */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); /* Increases shadow */
    /* transition: all 0.3s ease-in-out; */
}
