.header-space {
    display: block;
    width: 100%;
    height: 55px;
    margin: 0;
    padding: 0;
}

.navbar {
    height: 55px;
    position: fixed;
    width: 100%;
    z-index: 9;
    background-color: #ffffff;
    transition: linear all 0.3s;
}
/* .scrolled {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
} */
.text-purple {
    color: rgb(85, 14, 228);
}
.btn-outline-purple {
    color: rgb(85, 14, 228);
    border: 1px solid rgb(85, 14, 228);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-purple:hover {
    background: rgb(85, 14, 228);
    color: #fff;
    transform: translateY(-2px);
}

.btn-purple {
    background: rgb(85, 14, 228);
    color: rgb(255, 255, 255);
    border: 1px solid rgb(85, 14, 228);
    transition: all 0.3s ease;
}

.btn-purple:hover {
    background: rgb(255, 255, 255);
    color: rgb(85, 14, 228);
    border: 1px solid rgb(85, 14, 228);
    transform: translateY(-2px);
}
.object-to-fit {
    object-position: center;
    object-fit: cover;
}

.bg-purple {
    background-color: rgb(85, 14, 228);
    color: #ffffff;
}
.bg-purple-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.bg-gray {
    background-color: #e8e9ff;
}
.card-partner {
    background-color: #ffffffe4;
}

.product-card {
    width: 24rem;
    padding: 0px !important;
    border-radius: 8px;
    overflow: hidden;
}
.product-card:hover {
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.text-ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media(max-width: 768px){
    .product-card{
        width: 20rem;
    }
}








.footer-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.footer-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 50%,
            rgba(120, 119, 198, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 80%,
            rgba(120, 119, 198, 0.2) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-text {
    color: #e8e9ff;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-link-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-nav-link {
    color: #d1d5ff !important;
    text-decoration: none;
    padding: 0.4rem 0;
    display: block;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding-left: 0.5rem;
    position: relative;
}

.footer-nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a8b5ff, #c9d1ff);
    transition: width 0.3s ease;
}

.footer-nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
    padding-left: 1rem;
}

.footer-nav-link:hover::before {
    width: 20px;
}

.footer-nav-link i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    margin: 2rem 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.footer-copyright {
    color: #d1d5ff;
    font-size: 0.9rem;
    text-align: center;
}

.footer-social-links .nav-link {
    color: #d1d5ff !important;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-links .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.about-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.links-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-title {
        font-size: 1.3rem;
    }

    .about-section,
    .links-section {
        margin-bottom: 1.5rem;
    }

    .footer-nav-link:hover {
        transform: translateX(4px);
    }
}
/* 
.order-card {
    border: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.order-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #f8f9fa;
}

.product-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-row {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f1f1;
}

.info-row:last-child {
    border-bottom: none;
}

.price-highlight {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.total-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.btn-back {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}


.orders-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.filter-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.order-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #f8f9fa;
}

.order-meta {
    color: #6c757d;
    font-size: 0.9rem;
}

.price-text {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-detail {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.filter-form {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding-left: 2.5rem;
}

.search-box .search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
} */
