/* Products List Page Styles */

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-title i {
    color: #3b82f6;
    font-size: 2.8rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #b3d9ff;
    margin-bottom: 30px;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 12px 25px;
    margin: 0 auto;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-item a {
    color: #b3d9ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #94a3b8;
    margin: 0 10px;
}

.products-list-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 60vh;
}

.products-toolbar {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-form {
    margin-bottom: 0;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-input {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 15px 55px 15px 25px;
    font-size: 2.7rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    width: 100%;
    height: 50px;
}

.search-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #ffffff;
    outline: none;
}

.search-input::placeholder {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 400;
}

.btn-search {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    border-radius: 11px;
    width: 42px;
    height: 42px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.btn-search:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.products-count {
    text-align: right;
}

.count-text {
    font-size: 1.1rem;
    color: #64748b;
}

.count-text strong {
    color: #1e293b;
    font-weight: 700;
}

/* Product Title Link Styles */
.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 15px;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .products-toolbar {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .products-count {
        text-align: left;
        margin-top: 20px;
    }
    
    .search-input {
        padding: 12px 50px 12px 20px;
        font-size: 1rem;
        height: 45px;
    }
    
    .search-input::placeholder {
        font-size: 1rem;
    }
    
    .btn-search {
        width: 37px;
        height: 37px;
        right: 4px;
        top: 4px;
        bottom: 4px;
        border-radius: 9px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .breadcrumb {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
} 