/* Dashboard */
.icon-box {
    position: relative;
    overflow: visible;
    cursor: pointer;
}

.icon-box:hover::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: radial-gradient(
        circle,
        rgba(255, 0, 0, 0.6) 0%,
        rgba(255, 165, 0, 0.5) 40%,
        transparent 70%
    );
    border-radius: 50%;
    animation: blast 0.4s ease-out forwards;
    pointer-events: none;
}

@keyframes blast {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.4);
        opacity: 0;
    }
}

.heading a,
.heading .btn-link {
    position: relative;
    z-index: 999 !important;
}

.heading h2 {
    position: relative;
    z-index: 999 !important;
}

.icon-box i {
    transition: transform 0.2s;
}

.icon-box:hover i {
    transform: scale(1.8) rotate(10deg);
}

@media (max-width: 576px) {
    .cat-section .row {
        justify-content: center !important;
        text-align: center !important;
    }
}

.fw-banner {
    height: 260px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.fw-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
}

.fw-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.fw-sub {
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 500;
}

.fw-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
}

.fw-title span {
    color: #ff2727;
}

.fw-price span {
    color: #ff2727;
    font-weight: bold;
}

.fw-btn {
    display: inline-block;
    margin-top: 10px;
    background: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

.fw-btn:hover {
    background: #ff2727;
    color: #fff;
}

.fireworks-banners .banner-card {
    display: block;
    width: 100%;
    text-decoration: none;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    z-index: 10;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.fireworks-banners .banner-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: #ffffff;
    border-radius: 18px;
    cursor: pointer !important;
}

@media (hover: hover) {
    .fireworks-banners .banner-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 767px) {
    .fireworks-banners .col-12 {
        margin-bottom: 18px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .fireworks-banners .col-md-4 {
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .fireworks-banners .col-md-4 {
        margin-bottom: 0;
    }
}

.footer-banners {
    margin-top: 10px;
}

.footer-banner {
    display: block;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.footer-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: #ffffff;
    border-radius: 16px;
}

@media (hover: hover) {
    .footer-banner:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    }

    .footer-banner:hover img {
        transform: scale(1.02);
        transition: transform 0.3s ease;
    }
}

@media (max-width: 767px) {
    .footer-banner {
        margin-bottom: 16px;
    }

    .footer-banner img {
        max-height: 220px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-banner img {
        max-height: 240px;
    }
}

@media (min-width: 992px) {
    .footer-banner img {
        max-height: 260px;
    }
}

.footer-banner *,
.footer-banner *::before,
.footer-banner *::after {
    box-sizing: border-box;
}

.footer-banner:focus,
.footer-banner:active {
    outline: none;
}

.newsletter-section > div[style*="position:absolute"],
.fw-banner::after,
.icon-box::after {
    pointer-events: none !important;
}

.intro-slider-container,
.intro-slide {
    margin-top: 0 !important;
}

.intro-slide {
    width: 100%;
}

.slider-img {
    width: 100%;
    height: auto;
    display: block;
    /* margin-top:35px; */
}

/* Bulk Enquiry */
.bulk-card {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.bulk-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #000;
    margin-bottom: 25px;
}

.bulk-form .form-control {
    height: 50px;
    border-radius: 12px;
    border: 1px solid #d0d0d0;
    color: #000;
    font-size: 14px;
    padding-left: 14px;
    background: #fafafa;
    transition: all 0.2s ease-in-out;
}

.bulk-form textarea {
    border-radius: 12px !important;
    background: #fafafa;
    height: auto;
    padding-top: 12px;
}

.bulk-form .form-control:focus {
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.bulk-form label {
    font-weight: 600;
    color: #000;
}

.bulk-submit {
    background: #000 !important;
    border: none;
    height: 52px;
    border-radius: 12px;
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    transition: 0.3s;
}

.bulk-submit:hover {
    background: #c8102e !important;
}

/* Thank You Page */

.thank-container {
    max-width: 600px;
    margin: auto;
    text-align: center;
    padding: 80px 30px;
}

.thank-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.thank-msg {
    font-size: 18px;
    color: #444;
    margin-bottom: 30px;
}

.back-btn {
    background: #ee0505;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
}

.back-btn:hover {
    background: #ce2b2b;
    color: #fff;
}

/* 404 Page */
.error-wrapper {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    text-align: center;
    padding: 40px;
}

.error-img {
    width: 350px;
    max-width: 100%;
}

.error-text {
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    color: #222;
}

.error-btn {
    background: #d53333;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 25px;
    text-decoration: none;
    display: inline-block;
}
.error-btn:hover {
    background: #b82828;
}

#scroll-top {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}

#scroll-top:hover {
    background-color: #000;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 999999;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
    color: #fff;
}

.cart-success-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999999;
}

.cart-success-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 360px;
    max-width: 90%;
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px 24px;
    text-align: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    transform: translateX(120%);
    opacity: 0;
    transition: 0.35s ease;
    pointer-events: auto;
}

.cart-success-overlay.show .cart-success-modal {
    transform: translateX(0);
    opacity: 1;
}

.cart-success-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #111;
}

.cart-success-icon {
    margin-bottom: 14px;
}

.cart-success-modal h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #000;
}

.cart-success-modal p {
    font-size: 14px;
    color: #666;
    margin-bottom: 22px;
}

.cart-success-btn {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.25s ease;
}

.cart-success-btn:hover {
    background: #d61f1f;
    color: #fff;
}

.profile-sidebar {
    border-radius: 6px;
    overflow: hidden;
}

.profile-user-box {
    padding: 16px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.profile-user-box strong {
    font-size: 13px;
    color: #888;
}

.profile-username {
    font-size: 15px;
    font-weight: 600;
    color: #c8102e;
    margin-top: 2px;
}

.profile-menu {
    margin: 0;
    padding: 0;
}

.profile-menu .list-group-item {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 14px 18px;
    transition: all 0.2s ease;
    background: #fff;
}

.profile-menu .list-group-item a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.profile-menu .list-group-item:hover {
    background: #fafafa;
}

.profile-menu .list-group-item.active {
    background: #f9f9f9;
    border-left: 4px solid #c8102e;
}

.profile-menu .list-group-item.active a {
    color: #c8102e;
    font-weight: 600;
}

.logout-btn {
    background: none;
    border: none;
    color: #c8102e;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
}

.profile-menu .list-group-item:last-child {
    border-bottom: none;
}
