@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --primary-yellow: #fdb913;
    --primary-black: #000000;
    --danger-red: #dc3545;
    --bs-body-font-family: "Roboto", sans-serif;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #f8f9fa;
}

/* Header */
.top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.navbar .home-btn {
    background-color: var(--primary-black);
    color: white;
    padding: 20px 30px;
    border: none;
    transition: all 0.3s;
}

.navbar .home-btn:hover {
    background-color: #333;
}

.navbar-nav .nav-link {
    color: var(--primary-black);
    font-weight: 500;
    padding: 20px 20px;
}

.my-orders-btn {
    background-color: var(--primary-black);
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

.my-orders-btn:hover {
    background-color: #333;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.logo-section {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-section img {
    max-width: 200px;
    margin-bottom: 15px;
}

.logo-section h5 {
    color: var(--primary-black);
    font-weight: bold;
}

.logo-section .yellow-text {
    color: var(--primary-yellow);
}

.agency-badge {
    background-color: var(--primary-black);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
}

.telegram-link {
    background-color: #0088cc;
    color: white;
    padding: 10px;
    border-radius: 8px;
    display: block;
    text-align: center;
    margin-top: 15px;
    text-decoration: none;
}

.telegram-link:hover {
    background-color: #006699;
    color: white;
}

.category-section {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-section h5 {
    font-weight: bold;
    margin-bottom: 20px;
}

.category-btn {
    background-color: var(--primary-black);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 10px;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    text-decoration: none;
}

.category-btn:hover {
    background-color: #333;
    transform: translateX(5px);
}

.category-btn i {
    background-color: white;
    color: var(--primary-black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content */
.warning-box {
    background-color: #fff3cd;
    border: 2px solid var(--danger-red);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.warning-box h5 {
    color: var(--danger-red);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
}

.telegram-info {
    background-color: #e7f3ff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.telegram-info a {
    color: #0088cc;
    font-weight: bold;
    text-decoration: none;
}

/* Advertising Banners */
.ad-banner {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ad-banner img {
    width: 100%;
    height: auto;
}

/* Products Table */
.products-section {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.products-table {
    background-color: #fff;
}

.products-section h4 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.products-table {
    width: 100%;
    margin-top: 20px;
    font-family: "Roboto", sans-serif;
}

.products-table thead {
    background-color: var(--primary-black);
    color: white;
}

.products-table th {
    font-weight: 800;
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-family: "Roboto", sans-serif;
}

.products-table td {
    padding: 15px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
    font-weight: 500;
}

.products-table tbody tr:hover {
    background-color: #f8f9fa;
}

.bm-badge {
    background-color: var(--primary-black);
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    font-style: italic;
}

.verified-badge {
    background-color: #28a745;
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.reinstated-badge {
    color: #28a745;
    font-weight: bold;
}

.buy-btn {
    background-color: var(--primary-black);
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.buy-btn:hover {
    background-color: #333;
}

.fire-emoji {
    font-size: 18px;
}

.floating-cart-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-black);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.floating-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
}

.floating-cart-btn .cart-count-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .floating-cart-btn {
        left: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .floating-cart-btn .cart-count-badge {
        top: -6px;
        left: -6px;
    }
}

.floating-cart-btn:hover {
    background: #5bbc30;
    transform: scale(1.1);
}


/* Floating Chat Button */
.floating-chat-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-black);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.floating-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
}

.floating-chat-btn .chat-count-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Floating Chat Button */

@media (max-width: 768px) {
    .floating-chat-btn {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .floating-chat-btn .chat-count-badge {
        top: -6px;
        right: -6px;
    }
}

.floating-chat-btn:hover {
    background: #5bbc30;
    transform: scale(1.1);
}

/* Footer Styles */
.footer {
    background-color: var(--primary-black);
    color: white;
    padding: 50px 0 0 0;
    margin-top: 80px;
}

.footer-heading {
    color: var(--primary-yellow);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-text {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary-yellow);
    margin-right: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 0;
    color: #888;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        position: relative;
        margin-bottom: 20px;
    }

    .products-table {
        font-size: 14px;
    }

    .category-btn {
        font-size: 14px;
    }

    .footer {
        padding: 30px 0 0 0;
    }

    .footer-bottom p {
        text-align: center !important;
        margin-bottom: 10px;
    }
}
