/* ========================================
   PROPS PAGE STYLES
   ======================================== */

/* Page Layout */
.props-page {
    background: linear-gradient(135deg, #d8d8d8 0%, rgba(212, 175, 55, 0.1) 25%, #e0e0e0 50%, rgba(244, 208, 63, 0.08) 75%, #d8d8d8 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

/* Sidebar */
.filter-sidebar {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.filter-item {
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #d4af37;
    transform: translateX(5px);
}

.filter-item.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.2));
    border-color: #d4af37;
    color: #d4af37;
    font-weight: 600;
}

.filter-item i {
    font-size: 1.2rem;
}

/* Mobile Toggle */
.filter-toggle {
    display: none;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: 100%;
}

/* Main Content */
.props-content {
    padding-left: 1rem;
}

.content-header {
    margin-bottom: 2rem;
}

.page-title {
    color: #d4af37;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #b0b0b0;
    font-size: 1.1rem;
}

/* Bill Cards */
.bill-card {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.bill-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.bill-image {
    width: 100%;
    height: 120px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.bill-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.bill-image:hover img {
    transform: scale(1.05);
}

.bill-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.bill-placeholder i {
    font-size: 4rem;
    color: #d4af37;
}

.bill-currency {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.bill-denomination {
    color: #e0e0e0;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bill-note {
    color: #808080;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.bill-price {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.qty-btn {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    color: #d4af37;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.qty-input {
    width: 50px;
    height: 35px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #e0e0e0;
    border-radius: 5px;
}

.btn-add-cart {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 0.7rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Disclaimer */
.props-disclaimer {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 3rem 0;
}

.disclaimer-text {
    color: #333;
    margin: 0;
    text-align: center;
}

/* Toast */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(40, 167, 69, 0.95);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .filter-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .props-content {
        padding-left: 0;
    }
    
    .filter-toggle {
        display: block;
    }
    
    .filter-sidebar.collapsed {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
}
