:root
{
    --dark-900: #0d101e;
    --dark-700: #1f2138;
    --dark-500: #15172c;
    --blue-900: #2563eb;
    --blue-500: #4EA8FF;
    --white-200: rgb(207, 207, 207);
}

*
{
    box-sizing: border-box !important;
}

body
{
    background-color: var(--dark-900);
    background-repeat: no-repeat;
    color: white;
    font-family: 'Inter', sans-serif;
    min-height: 99.6vh;
    width: 100%;
}

a
{
    color: var(--blue-500);
    font-style: normal;
    font-weight: bold;
    text-decoration: none;
}

input::placeholder
{
    color: var(--white-200) !important;
}

input:checked
{
    background-color: white !important;
}

input, select
{
    background: var(--dark-700) !important;
    border: none !important;
    color: white !important;
}

table {
    width: 100%;
    border-collapse: collapse;
    color: var(--white-200);
    background: var(--dark-500) !important;
}

table th,
.table td {
    padding: 12px 16px;
    text-align: left;
}

table tbody tr:nth-child(even) {
    background-color: var(--dark-700) !important;
}

table tbody tr:nth-child(odd) {
    background-color: var(--dark-500) !important;
}

table tbody tr:hover {
    background-color: var(--dark-900) !important;
    transition: 0.2s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    padding: 10px 14px;
    border-bottom: 1px solid var(--dark-700);
    color: #E5E5E5;
}

ul li:last-child {
    border-bottom: none;
}

ul li:hover {
    background: var(--dark-700);
    transition: 0.2s ease;
}

.logo-header
{
    border-radius: 50%;
    border: 1px solid var(--blue-900);
    margin-right: 5px;
}

.my-bg-dark
{
    background: var(--dark-700) !important;
    border: none !important;
}

.card-zoom {
    border: 1px solid var(--blue-900);
    border-radius: 16px;
    transition: transform 0.3s ease;
    padding: 5px;
    transform: scale(0.99);
}

.card-zoom .product-image
{
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card-zoom:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 8px;
    color: white;
    border: 1px solid var(--blue-900);
    font-weight: 500;
    transition: 0.2s ease;
}

.btn-login:hover {
    background: var(--dark-900);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
}

.btn-register {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7C3AED, #3B82F6);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
}

.btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.7);
}

.search-form {
    display: flex;
    background: var(--dark-700) !important;
    border: 1px solid var(--blue-900);
    border-radius: 50px;
    padding: 5px 10px;
    width: 420px;
    max-width: 100%;
}

.search-form input {
    border: none !important;
    background: transparent;
    flex: 1;
    padding: 8px;
    outline: none !important;
}

.search-form input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.search-form button {
    border: none;
    background: var(--blue-900);
    color: white;
    border-radius: 50%;
    margin: auto 0px;
    width: 35px;
    height: 35px;
}

.form, .my-card-xl, header
{
    position: relative;
    background-color: var(--dark-500);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    color: white;
    margin: 10px;
    margin-bottom: 20px;
    padding: 20px;
}

.my-card-xl::before, .form::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(90deg, #7C3AED, #3B82F6, #7C3AED);
    z-index: -1;
    filter: blur(2px);
    opacity: 0.7;
}

.image-disclosure-container
{
    display: flex;
    flex-direction: row;
    align-items: center;    
    padding: 0px;
}

.image-disclosure-container img
{
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    width: 300px;
}

.image-disclosure-container .text-alt
{
    text-align: center;
    margin-left: 10px;
}

.form-group
{
    margin: 20px 0px;
}

.input-group input
{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.input-group button
{
    background-color: var(--dark-700);
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    color: white;
}

.product-image
{
    height: 220px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.no-image
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 14px;
}

.no-image i
{
    font-size: 50px;
    margin-bottom: 8px;
}

.main-section
{
    min-height: 70vh;
}

.my-text-secondary
{
    color: var(--white-200) !important;
}

.text-muted
{
    color: var(--white-200) !important;
}

.my-bg-dark-white
{
    background-color: var(--dark-500) !important
}

@media (max-width: 768px) {
    .image-disclosure-container
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0px;
    }

    .image-disclosure-container img
    {
        border-bottom-left-radius: 0px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        width: 100%;
    }

    .image-disclosure-container .text-alt
    {
        margin: 20px;
    }
}

.card-brilho {
    position: relative;
    background: var(--dark-700);
    border-radius: 16px;
    margin: 10px;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.card-brilho::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -30%;
    width: 40%;
    height: 4px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(120,180,255,0.9),
        rgba(255,255,255,1),
        rgba(120,180,255,0.9),
        transparent
    );

    filter: blur(2px);
    animation: brilhoMove 4s linear infinite;
}

.card-brilho::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: -30%;
    width: 40%;
    height: 4px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(120,180,255,0.9),
        rgba(255,255,255,1),
        rgba(120,180,255,0.9),
        transparent
    );

    filter: blur(2px);
    animation: brilhoMove 4s linear infinite;
}

@keyframes brilhoMove {
    0% {
        left: -35%;
    }
    100% {
        left: 120%;
    }
}