:root {
    --phoenix-tertiary-color: black !important;
    --phoenix-btn-active-color: black !important;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
input,
select,
label,
textarea,
* {
    font-family: "Tajawal" !important;
    border-radius: 0 !important;
}

.rounded {
    border-radius: 0 !important;
}

body,
.bg-body {
    background-color: unset !important;
}

.bg-body-emphasis {
    background-color: white !important;
    border-bottom: 1px solid #000000;
}

.navbar-responsive-navitems .nav-item .nav-link.active,
.navbar-responsive-navitems .nav-item .nav-link:hover {
    color: #3187af !important;
}

.category-dropdown-menu {
    z-index: 9999 ! important;
}

:root {
    --primary-color: #3187af;
    --secondary-color: #a41598;
    --banner-height: 48px;
}

/* Fixed Banner Styles */
.promo-banner-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 9999;
    overflow: hidden;
}

/* Animated Gradient Background */
.promo-banner-fixed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--secondary-color) 50%,
            var(--primary-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    opacity: 0.8;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shimmer Effect */
.promo-banner-fixed::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

Content Styles
.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
    padding: 2px 0;
}

.banner-icon {
    color: #ffffff;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.banner-message {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-divider {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    margin: 0 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.banner-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.banner-cta {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.banner-cta:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 576px) {

    .banner-content {
        gap: 6px;
        padding: 6px 8px;
    }

    .banner-message {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }

    .banner-description {
        font-size: 0.65rem;
    }

    .banner-divider {
        margin: 0 4px;
    }

    .banner-cta {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-left: 6px;
    }

    .footer{
        height: 0 !important;
    }
}

/* Add to Cart Button */
.modern-btn {
    width: 100%;
    padding: 16px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 14px;
}

.modern-btn:hover:not(:disabled) {
    background: #333;
    border-color: #333;
}

.modern-btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* View Full Details Button */
.smooth-btn {
    /* display: block; */
    width: 100%;
    padding: 16px;
    background: transparent;
    color: #000;
    border: 2px solid #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 14px;
    /* text-align: center; */
    /* text-decoration: none; */
}

.smooth-btn:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.smooth-btn i {
    font-size: 14px;
}
