* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root {
    --white: #fff;
    --black: #000;
    --gray-50: #f2f2f2;
    --gray-100: #e6e6e6;
    --gray-200: #cccccc;
    --gray-300: #b3b3b3;
    --gray-400: #999999;
    --gray-500: #666;
    --gray-700: #262626;
    --gray-800: #191919;
    --gray-900: #0d0d0d;
    --primary-500: #ed1c24;
    --primary-600: #be161d;
    --secondary-500: #ffc816;
}

.bg-gray-800 {
    background-color: var(--gray-800);
}

.text-primary-500 {
    color: var(--primary-500);
}

.text-gray-50 {
    color: var(--gray-50);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-2xs {
    font-size: 10px;
    line-height: 12px;
}

.text-xs {
    font-size: 12px;
    line-height: 16px;
}

.text-sm {
    font-size: 14px;
    line-height: 20px;
}

.text-base {
    font-size: 16px;
    line-height: 24px !important;
}

.text-lg {
    font-size: 20px;
    line-height: 28px;
}

.text-xl {
    font-size: 24px;
    line-height: 32px;
}

.text-2xl {
    font-size: 32px;
    line-height: 38px;
}

.text-3xl {
    font-size: 40px;
    line-height: 44px;
}

.logo-brand {
    width: 138px;
    height: 24px;
}

.breadcrumb-item a {
    text-decoration: none !important;
    color: var(--primary-500) !important;
}

.btn-danger {
    background-color: var(--primary-500) !important;
}

.btn-danger:hover {
    background-color: var(--primary-600) !important;
}

.breadcrumb-item.active {
    font-weight: 600;
    color: var(--gray-400);
}

.card {
    background-color: var(--gray-50);
    position: relative;
    min-height: 488px !important;
    border-color: var(--gray-50);
}

.card-slider {
    background-color: var(--gray-50);
    position: relative;
    min-height: 348px !important;
    border-color: var(--gray-50);
    opacity: 0.8;
}

.card-slider:hover {
    opacity: 1;
    margin-top: 0 !important;
}
.card:hover {
    margin-top: -8px;
}

.card-main {
    min-height: 395px !important;
}

.body-bg {
    background-color: var(--gray-500);
}
.body-bg2 {
    background-color: var(--gray-50);
}

main {
    min-height: 100vh;
}

.discount {
    padding: 8px;
    color: var(--white);
    background-color: var(--primary-500);
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0px 8px;
}

.discount-2 {
    text-align: center;
    padding: 4px 8px;
    border-radius: 8px;
    color: var(--white);
    background-color: var(--primary-500);
}

.text-limit {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* line-height: 16px;     fallback */
    max-height: 65px;      /* fallback */
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
 }

 .border-5 {
    border-width: 16px !important;
    border-color: var(--gray-50);
 }

@media (min-width: 360px) and (max-width: 599px) {
    .border-5 {
        border-width: 8px !important;
     }

    .card {
        min-height: 360px !important;
    }

    .card-slider {
        min-height: 280px !important;
    }
    
    .card-main {
        min-height: 256px !important;
    }
    
    .text-xs {
        font-size: 10px !important;
        line-height: 12px !important;
    }
    
    .text-sm {
        font-size: 10px !important;
        line-height: 12px !important;
    }
    
    .text-base {
        font-size: 12px !important;
        line-height: 16px !important;
    }
    
    .text-lg {
        font-size: 14px !important;
        line-height: 20px !important;
    }
    
    .text-xl {
        font-size: 16px !important;
        line-height: 24px !important;
    }
    
    .text-2xl {
        font-size: 20px;
        line-height: 28px;
    }
    
    .text-3xl {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (min-width: 600px) and (max-width: 768px) {
    .card {
        min-height: 360px !important;
    }
    
    .card-main {
        min-height: 310px !important;
    }
}