@charset "UTF-8";

:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --success-color: #22c55e;
    --danger-color: #ef4444;
    --background-light: #232131;
    --background-white: #ffffff;
    --text-primary: #6254fe;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    background: var(--background-light);
}
.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.card-header {
    background: #282638;
    border-bottom: 2px solid #232131;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0 !important;
}
.card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-footer {
    padding: 2rem 2.25rem;
    background-color: #232131;
    border-top: 1px solid #6254FE;
}
.card-footer:last-child {
    border-radius: 0 0 calc(0.42rem - 1px) calc(0.42rem - 1px);
}

.pcard {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pcard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pcard:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
    border-color: rgba(255, 255, 255, 0.2);
}

.pcard:hover::before {
    opacity: 1;
}

.pcard-header {
    background: linear-gradient(135deg, rgba(98, 84, 254, 0.2) 0%, rgba(40, 38, 56, 0.3) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px 16px 0 0 !important;
    position: relative;
}

.pcard-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 5s infinite;
    z-index: 0;
    pointer-events: none;
}

.pcard-header > * {
    position: relative;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.pcard-body {
}

.pcard-footer {
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(35, 33, 49, 0.4) 0%, rgba(40, 38, 56, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(98, 84, 254, 0.3);
    position: relative;
}

.pcard-footer:last-child {
    border-radius: 0 0 16px 16px;
}

.pcard-woh {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pcard-woh::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pcard-woh:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
    border-color: rgba(255, 255, 255, 0.2);
}

.pcard-woh:hover::before {
    opacity: 1;
}

.pcard-woh-header {
    background: linear-gradient(135deg, rgba(98, 84, 254, 0.2) 0%, rgba(40, 38, 56, 0.3) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px 16px 0 0 !important;
    position: relative;
}

.pcard-woh-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 5s infinite;
    z-index: 0;
    pointer-events: none;
}

.pcard-woh-header > * {
    position: relative;
    z-index: 1;
}

.pcard-woh-body {
    padding: 2rem;
}

.pcard-woh-footer {
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(35, 33, 49, 0.4) 0%, rgba(40, 38, 56, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(98, 84, 254, 0.3);
    position: relative;
}

.pcard-woh-footer:last-child {
    border-radius: 0 0 16px 16px;
}

.scard {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.scard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.scard-header {
    background: linear-gradient(135deg, rgba(98, 84, 254, 0.2) 0%, rgba(40, 38, 56, 0.3) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px 16px 0 0 !important;
    position: relative;
}

.scard-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 5s infinite;
}

.scard-footer {
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(35, 33, 49, 0.4) 0%, rgba(40, 38, 56, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(98, 84, 254, 0.3);
    position: relative;
}

.scard-footer:last-child {
    border-radius: 0 0 16px 16px;
}

.order-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Effekt */
.order-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.order-card-header {
    background: linear-gradient(135deg, rgba(98, 84, 254, 0.2) 0%, rgba(40, 38, 56, 0.3) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 16px 16px 0 0;
    position: relative;
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
}


.order-card-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 5s infinite;
}

.order-card-body {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    min-height: 1px;
}

.order-card-footer {
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(35, 33, 49, 0.4) 0%, rgba(40, 38, 56, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(98, 84, 254, 0.3);
    border-radius: 0 0 16px 16px;
    position: relative;
}

