.btn-outline-danger {
    border: 1px solid #ef4444 !important;
    color: #ef4444 !important;
    background: transparent !important;
}

.btn-outline-danger:hover {
    background: #ef4444 !important;
    color: #fff !important;
}

.mobile-bottom-profile {
    margin-top: auto;
    padding-bottom: 30px;
}
.bd-video-btn.secondary {
    color: #4b7ed1;
}

.bd-video-btn.secondary:hover {
    color: #4b7ed1 !important;
}

.bd-video-btn.secondary:hover .icon i {
    color: #4b7ed1 !important;
}
/* ==============================================================
           CORPORATE CART DRAWER STYLES
           ============================================================== */
.pma-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 37, 64, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.pma-cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.pma-cart-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 999999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.pma-cart-drawer.open {
    right: 0;
}

.pma-cart-header {
    padding: 24px 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
}

.pma-cart-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a2540;
    margin: 0;
}

.pma-cart-close-btn {
    background: #fff;
    border: 1px solid #cbd5e1;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    transition: 0.3s;
}

.pma-cart-close-btn:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
    transform: rotate(90deg);
}

.pma-cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px 30px;
    background: #ffffff;
}

.pma-cart-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.pma-cart-item:hover {
    border-color: #07a169;
    box-shadow: 0 4px 15px rgba(7, 161, 105, 0.08);
}

.pma-cart-thumb img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #f1f5f9;
}

.pma-cart-content {
    flex-grow: 1;
    min-width: 0;
}

.pma-cart-title {
    font-size: 14px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 6px;
    line-height: 1.4;
}

.pma-cart-meta {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.pma-cart-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pma-cart-price {
    font-size: 16px;
    font-weight: 700;
    color: #07a169;
}

.pma-cart-del {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 16px;
    transition: 0.2s;
}

.pma-cart-del:hover {
    color: #ef4444;
}

.pma-cart-empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.pma-cart-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

.pma-cart-footer {
    padding: 24px 30px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.pma-checkout-btn {
    background: #0a2540;
    border: none;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.pma-checkout-btn:hover {
    background: #07a169;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 161, 105, 0.2);
}

body.cart-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .pma-cart-drawer {
        width: 75vw;
        right: -75vw;
    }

    .pma-cart-body,
    .pma-cart-header,
    .pma-cart-footer {
        padding: 20px 15px;
    }

    .bd-header-right {
        align-items: center;
        gap: 0 18px;
    }
}

.bd-header-meta::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    inset-inline-end: 0px;
    background-color: #e5e5e500;
}

@media (max-width: 575px) {
    .bd-offcanvas-logo a img {
        width: 212px;
    }
}
