/* HERO HEIGHT CONTROL */
.hero-slide {
    min-height: 75vh;
}

/* MOBILE HEIGHT */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 50vh;
        text-align: center;
    }
}

/* INDICATORS CENTER FIX */
.carousel-indicators {
    bottom: 10px;
}

/* GLOBAL */

/* NAVBAR */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/* SEARCH */
.search-box input {
    border-radius: 20px;
    padding-left: 15px;
}

/* ICONS */
.nav-icons i {
    font-size: 18px;
    margin-left: 15px;
    cursor: pointer;
}

/* LOGO */
.logo-text {
    font-weight: bold;
    color: #000;
}

/* FLASH SALE */
.flash-sale-box {
    background: #fff3cd;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
}

/* HEADER ICON */
.header-icon {
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.header-icon:hover {
    color: orange;
}

/* SEARCH */
.search-input {
    width: 220px;
    border-radius: 20px;
}

/* CATEGORY NAVBAR */
.category-navbar .nav-link {
    color: #333;
    font-weight: 500;
    padding: 15px;
}

/* DROPDOWN */
.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* DESKTOP HOVER */
@media (min-width: 992px) {

    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

}

/* MOBILE SIDEBAR */
.offcanvas-start {
    width: 280px;
}

/* MOBILE SEARCH */
.mobile-search-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mobile-search-wrapper.active {
    max-height: 80px;
    padding: 10px 0;
}

.mobile-search-input {
    border-radius: 20px;
}

/* ACCORDION */
.accordion-button:not(.collapsed) {
    background: #fff3cd;
    color: #000;
}

.accordion-button:focus {
    box-shadow: none;
}

/* HERO SECTION */
.hero-slide {
    min-height: 75vh;
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 50vh;
        text-align: center;
    }
}

/* CAROUSEL INDICATORS */
.carousel-indicators {
    bottom: 10px;
}

/* ADD TO CART ANIMATED BUTTON */
/* CARD FIX */
/* PRODUCT CARD */
.card {
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-3px);
}

/* PRODUCT TITLE */
.product-title {
    font-size: 14px;
    /*min-height: 38px;*/
}

/* CART BUTTON */
.cart-btn {
    overflow: hidden;
    border-radius: 20px;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px 10px;
    width: 40px;
}

/* ICON */
.cart-btn i {
    font-size: 14px;
}

/* TEXT */
.cart-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* HOVER */
.cart-btn:hover {
    width: 140px;
}

/* SHOW TEXT */
.cart-btn:hover .cart-text {
    opacity: 1;
    width: auto;
    margin-left: 8px;
}
/* PRODUCT ICON ROW */
.product-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

/* SINGLE ICON */
.product-icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: all 0.25s ease;

    color: #333;

    aspect-ratio: 1/1;
}

/* ICON */
.product-icon i {
    font-size: 14px;
    line-height: 1;
    transition: 0.5s ease-in-out;
}

/* NEW HOVER ANIMATION */
.product-icon:hover {
    background-color: red;
    transform: translateY(-4px) rotate(16deg);
    box-shadow: 0 5px 15px rgba(255,165,0,0.4);
}

/* ICON COLOR */
.product-icon:hover i {
    color: #fff;
}