:root{
    --brand-red-primary: #fd0002;
    --brand-light-red-primary: #ff3b3d;
    --brand-dark-gray: #1a1a1a;
    --button-custom-purchase: #56863e;
    --button-custom-success: #3d5f2c;
    --button-custom-success-hover: #2c441f;
    --footer-dark-gray: #111111;
}

.btn-custom-success{
    background: var(--button-custom-success);
    padding: 0.5em 4em;
    color: white;
}

.btn-custom-success:hover{
    background: var(--button-custom-success-hover);
    color: white;
}

.spacer{
    padding: 5rem 0;
}

.title{
    font-size: 2.5rem;
    font-weight: bold;
}

/* First Section Carousel and Images for 2nd Section */
.img-card {
    position: relative;
    height: 100%;
    min-height: 260px;
    overflow: hidden;
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.object-fit-cover {
    object-fit: cover;
}

.img-overlay {
    z-index: 2;
}

.img-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.55),
        rgba(0,0,0,0)
    );
    z-index: 1;
}

.img-card img {
    transition: transform .5s ease;
}

.img-card:hover img {
    transform: scale(1.08);
}

.badge-custom {
    display: inline-block;
    padding: 0.6em 1.2em;
    font-size: 0.8rem;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    background-color: rgba(108, 117, 125, 0.55);
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}

/* End */

/* BEST SELLING SECTION */
#addToCard, .custom-button {
    text-align: center;
    border: none;
    border-width: 0.5rem;
    background-color: var(--brand-red-primary);
    box-shadow: 1px 3px #ccc;
}

#addToCard:hover, .custom-button:hover {
    color: #fff;
    background-color: var(--brand-dark-gray);
    border-color: var(--brand-red-primary);
}

.custom-card i {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: center;
}

.custom-card .button.carousel-control-prev,
.custom-card .button.carousel-control-next {
    width: 2rem;
    height: 2rem;
    background-color: var(--brand-red-primary);
    margin-top: 14rem;
}

.custom-card {
    margin: 0 auto;
    box-shadow: 2px 2px 10px 0px #ccc;
}
/* End */

/* Footer */
.bg-dark-gray{
    background: var(--brand-dark-gray);
}
/* End */

/* Custom CSS */
.swal-custom-success {
    background-color: #4CAF50 !important;
    color: white !important;
    font-weight: 500;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.dropdown-menu {
    border-radius: 12px;
    margin-top: 10px !important;
}

.dropdown-item:hover {
    background-color: var(--brand-light-red-primary);
    color: white;
}

.dropdown-item {
    transition: all 0.2s ease;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    #navigation_logo {
        height:30px !important;
    }

    .flex-mobile-custom{
        flex-direction: column !important;
        gap: 0.5rem;
    }

    .footer-link:hover {
        transform: none;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
}

.bg-dark-gray {
    background-color: var(--footer-dark-gray);
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-link {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: #dc3545; /* Tactical Red */
    transform: translateX(5px);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.letter-spacing-2 {
    letter-spacing: 2px;
}
.rounded-4 {
    border-radius: 1.5rem !important;
}
#user-banner {
    background: linear-gradient(45deg, #000 30%, #1a1a1a 100%);
}

.scroll-top-btn{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--footer-dark-gray);
    color: #fff;
    border: 1px white solid;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(63, 50, 50, 0.3);
}

.scroll-top-btn:hover{
    background: var(--brand-dark-gray);
    transform: translateY(-3px);
}

.scroll-icon{
    width: 20px !important;
    height: 20px !important;
}

html{
    scroll-behavior: smooth;
}